You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::ElasticsearchService::Types::AdvancedSecurityOptionsInput

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing AdvancedSecurityOptionsInput as input to an Aws::Client method, you can use a vanilla Hash:

{
  enabled: false,
  internal_user_database_enabled: false,
  master_user_options: {
    master_user_arn: "ARN",
    master_user_name: "Username",
    master_user_password: "Password",
  },
  saml_options: {
    enabled: false,
    idp: {
      metadata_content: "SAMLMetadata", # required
      entity_id: "SAMLEntityId", # required
    },
    master_user_name: "Username",
    master_backend_role: "BackendRole",
    subject_key: "String",
    roles_key: "String",
    session_timeout_minutes: 1,
  },
}

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).

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#enabledBoolean

True if advanced security is enabled.

Returns:

  • (Boolean)

    True if advanced security is enabled.

#internal_user_database_enabledBoolean

True if the internal user database is enabled.

Returns:

  • (Boolean)

    True if the internal user database is enabled.

#master_user_optionsTypes::MasterUserOptions

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

Returns:

#saml_optionsTypes::SAMLOptionsInput

Specifies the SAML application configuration for the domain.

Returns: