Module Values.BatchIsAuthorizedWithTokenInputItemSource

An authorization request that you include in a BatchIsAuthorizedWithToken API request.

Sourcetype nonrec t = {
  1. action : ActionIdentifier.t option;
    (*

    Specifies the requested action to be authorized. For example, PhotoFlash::ReadPhoto.

    *)
  2. resource : EntityIdentifier.t option;
    (*

    Specifies the resource that you want an authorization decision for. For example, PhotoFlash::Photo.

    *)
  3. context : ContextDefinition.t option;
    (*

    Specifies additional context that can be used to make more granular authorization decisions.

    *)
}
Sourceval make : ?action:??? -> ?resource:??? -> ?context:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Map of ([> `String of String_.t ] * Awso.Botodata.value) list | `String of ActionType.t ]) 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