Module Values.AccessPolicyDetailSource

Details about an OpenSearch Serverless access policy.

Sourcetype nonrec t = {
  1. type_ : AccessPolicyType.t option;
    (*

    The type of access policy.

    *)
  2. name : PolicyName.t option;
    (*

    The name of the policy.

    *)
  3. policyVersion : PolicyVersion.t option;
    (*

    The version of the policy.

    *)
  4. description : PolicyDescription.t option;
    (*

    The description of the policy.

    *)
  5. policy : Document.t option;
    (*

    The JSON policy document without any whitespaces.

    *)
  6. createdDate : Long.t option;
    (*

    The date the policy was created.

    *)
  7. lastModifiedDate : Long.t option;
    (*

    The timestamp of when the policy was last modified.

    *)
}
Sourceval make : ?type_:??? -> ?name:??? -> ?policyVersion:??? -> ?description:??? -> ?policy:??? -> ?createdDate:??? -> ?lastModifiedDate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of Long.t | `String of PolicyName.t | `Structure of 'a list ]) 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