Module Values.AssociatedAccessPolicySource

An access policy association.

Sourcetype nonrec t = {
  1. policyArn : String_.t option;
    (*

    The ARN of the AccessPolicy.

    *)
  2. accessScope : AccessScope.t option;
    (*

    The scope of the access policy.

    *)
  3. associatedAt : Timestamp.t option;
    (*

    The date and time the AccessPolicy was associated with an AccessEntry.

    *)
  4. modifiedAt : Timestamp.t option;
    (*

    The Unix epoch timestamp for the last modification to the object.

    *)
}
Sourceval make : ?policyArn:??? -> ?accessScope:??? -> ?associatedAt:??? -> ?modifiedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `Structure of (string * [> `Enum of string | `List of [> `String of String_.t ] list ]) list | `Timestamp of 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