Module Values.AccessPoliciesStatusSource

The configured access rules for the domain's document and search endpoints, and the current status of those rules.

Sourcetype nonrec t = {
  1. options : PolicyDocument.t option;
    (*

    The access policy configured for the Elasticsearch domain. Access policies may be resource-based, IP-based, or IAM-based. See Configuring Access Policiesfor more information.

    *)
  2. status : OptionStatus.t option;
    (*

    The status of the access policy for the Elasticsearch domain. See OptionStatus for the status information that's included.

    *)
}
Sourceval make : ?options:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of PolicyDocument.t | `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of UIntValue.t | `Timestamp of UpdateTimestamp.t ]) 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