Module Values_2.GluePolicySource

A structure for returning a resource policy.

Sourcetype nonrec t = {
  1. policyInJson : PolicyJsonString.t option;
    (*

    Contains the requested policy document, in JSON format.

    *)
  2. policyHash : Values_0.HashString.t option;
    (*

    Contains the hash value associated with this policy.

    *)
  3. createTime : Values_0.Timestamp.t option;
    (*

    The date and time at which the policy was created.

    *)
  4. updateTime : Values_0.Timestamp.t option;
    (*

    The date and time at which the policy was last updated.

    *)
}
Sourceval make : ?policyInJson:??? -> ?policyHash:??? -> ?createTime:??? -> ?updateTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of PolicyJsonString.t | `Timestamp of Values_0.Timestamp.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