Module Values.PolicyDescriptionSource

Information about a policy.

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

    The name of the policy.

    *)
  2. policyTypeName : PolicyTypeName.t option;
    (*

    The name of the policy type.

    *)
  3. policyAttributeDescriptions : PolicyAttributeDescriptions.t option;
    (*

    The policy attributes.

    *)
}
Sourceval make : ?policyName:??? -> ?policyTypeName:??? -> ?policyAttributeDescriptions:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of AttributeName.t ]) list ] list | `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