Module Values.AwsIamPolicyVersionSource

A version of an IAM policy.

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

    The identifier of the policy version.

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

    Whether the version is the default version.

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

    Indicates when the version was created. For more information about the validation and formatting of timestamp fields in Security Hub CSPM, see Timestamps.

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