Module Values.DeterminingPolicyItemSource

Contains information about one of the policies that determined an authorization decision. This data type is used as an element in a response parameter for the IsAuthorized, BatchIsAuthorized, and IsAuthorizedWithToken operations. Example: "determiningPolicies":[{"policyId":"SPEXAMPLEabcdefg111111"}]

Sourcetype nonrec t = {
  1. policyId : PolicyId.t option;
    (*

    The Id of a policy that determined to an authorization decision. Example: "policyId":"SPEXAMPLEabcdefg111111"

    *)
}
Sourceval make : ?policyId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of PolicyId.t ]) 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