Module Values_0.PolicyVersionSource

Describes a policy version.

Sourcetype nonrec t = {
  1. versionId : PolicyVersionId.t option;
    (*

    The policy version ID.

    *)
  2. isDefaultVersion : IsDefaultVersion.t option;
    (*

    Specifies whether the policy version is the default.

    *)
  3. createDate : DateType.t option;
    (*

    The date and time the policy was created.

    *)
}
Sourceval make : ?versionId:??? -> ?isDefaultVersion:??? -> ?createDate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of IsDefaultVersion.t | `String of PolicyVersionId.t | `Timestamp of DateType.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