Module Values_0.EffectivePolicySource

The policy that has the effect on the authorization results.

Sourcetype nonrec t = {
  1. policyName : PolicyName.t option;
    (*

    The policy name.

    *)
  2. policyArn : PolicyArn.t option;
    (*

    The policy ARN.

    *)
  3. policyDocument : PolicyDocument.t option;
    (*

    The IAM policy document.

    *)
}
Sourceval make : ?policyName:??? -> ?policyArn:??? -> ?policyDocument:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of PolicyName.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