Module Values.PolicyDetailSource

Contains information about an IAM policy, including the policy document. This data type is used as a response element in the GetAccountAuthorizationDetails operation.

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

    The name of the policy.

    *)
  2. policyDocument : PolicyDocumentType.t option;
    (*

    The policy document.

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