Module Values.AwsOpenSearchServiceDomainAdvancedSecurityOptionsDetailsSource

Provides information about domain access control options.

Sourcetype nonrec t = {
  1. enabled : Boolean.t option;
    (*

    Enables fine-grained access control.

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

    Enables the internal user database.

    *)
  3. masterUserOptions : AwsOpenSearchServiceDomainMasterUserOptionsDetails.t option;
    (*

    Specifies information about the master user of the domain.

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