Module Values_0.DeniedSource

Contains information that denied the authorization.

Sourcetype nonrec t = {
  1. implicitDeny : ImplicitDeny.t option;
    (*

    Information that implicitly denies the authorization. When a policy doesn't explicitly deny or allow an action on a resource it is considered an implicit deny.

    *)
  2. explicitDeny : ExplicitDeny.t option;
    (*

    Information that explicitly denies the authorization.

    *)
}
Sourceval make : ?implicitDeny:??? -> ?explicitDeny:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of PolicyName.t ]) list ] list ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t