Module Values.AdvancedSecurityOptionsSource

Container for fine-grained access control settings.

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

    True if fine-grained access control is enabled.

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

    True if the internal user database is enabled.

    *)
  3. sAMLOptions : SAMLOptionsOutput.t option;
    (*

    Container for information about the SAML configuration for OpenSearch Dashboards.

    *)
  4. jWTOptions : JWTOptionsOutput.t option;
    (*

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

    *)
  5. iAMFederationOptions : IAMFederationOptionsOutput.t option;
    (*

    Configuration options for IAM identity federation in advanced security settings.

    *)
  6. anonymousAuthDisableDate : DisableTimestamp.t option;
    (*

    Date and time when the migration period will be disabled. Only necessary when enabling fine-grained access control on an existing domain.

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

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

    *)
}
Sourceval make : ?enabled:??? -> ?internalUserDatabaseEnabled:??? -> ?sAMLOptions:??? -> ?jWTOptions:??? -> ?iAMFederationOptions:??? -> ?anonymousAuthDisableDate:??? -> ?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 String_.t | `Structure of (string * [> `String of SAMLMetadata.t ]) list ]) list | `Timestamp of DisableTimestamp.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