Module Values.AdvancedSecurityOptionsInputSource

Options for enabling and configuring fine-grained access control. For more information, see Fine-grained access control in Amazon OpenSearch Service.

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

    True to enable fine-grained access control.

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

    True to enable the internal user database.

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

    Container for information about the master user.

    *)
  4. sAMLOptions : SAMLOptionsInput.t option;
    (*

    Container for information about the SAML configuration for OpenSearch Dashboards.

    *)
  5. jWTOptions : JWTOptionsInput.t option;
    (*

    Container for information about the JWT configuration of the Amazon OpenSearch Service.

    *)
  6. iAMFederationOptions : IAMFederationOptionsInput.t option;
    (*

    Input configuration for IAM identity federation within advanced security options.

    *)
  7. anonymousAuthEnabled : Boolean.t option;
    (*

    True to enable a 30-day migration period during which administrators can create role mappings. Only necessary when enabling fine-grained access control on an existing domain.

    *)
}
Sourceval make : ?enabled:??? -> ?internalUserDatabaseEnabled:??? -> ?masterUserOptions:??? -> ?sAMLOptions:??? -> ?jWTOptions:??? -> ?iAMFederationOptions:??? -> ?anonymousAuthEnabled:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Structure of (string * [> `Boolean of Boolean.t | `Integer of IntegerClass.t | `String of ARN.t | `Structure of (string * [> `String of SAMLMetadata.t ]) list ]) 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