Module Values.AdvancedSecurityOptionsInputSource

Specifies the advanced security configuration: whether advanced security is enabled, whether the internal database option is enabled, master username and password (if internal database is enabled), and master user ARN (if IAM is enabled).

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

    True if advanced security is enabled.

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

    True if the internal user database is enabled.

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

    Credentials for the master user: username and password, ARN, or both.

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

    Specifies the SAML application configuration for the domain.

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

    True if Anonymous auth is enabled. Anonymous auth can be enabled only when AdvancedSecurity is enabled on existing domains.

    *)
}
Sourceval make : ?enabled:??? -> ?internalUserDatabaseEnabled:??? -> ?masterUserOptions:??? -> ?sAMLOptions:??? -> ?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