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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-elasticsearchservice/types.rb

Overview

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

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#anonymous_auth_enabledBoolean

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

Returns:

  • (Boolean)


207
208
209
210
211
212
213
214
215
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 207

class AdvancedSecurityOptionsInput < Struct.new(
  :enabled,
  :internal_user_database_enabled,
  :master_user_options,
  :saml_options,
  :anonymous_auth_enabled)
  SENSITIVE = []
  include Aws::Structure
end

#enabledBoolean

True if advanced security is enabled.

Returns:

  • (Boolean)


207
208
209
210
211
212
213
214
215
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 207

class AdvancedSecurityOptionsInput < Struct.new(
  :enabled,
  :internal_user_database_enabled,
  :master_user_options,
  :saml_options,
  :anonymous_auth_enabled)
  SENSITIVE = []
  include Aws::Structure
end

#internal_user_database_enabledBoolean

True if the internal user database is enabled.

Returns:

  • (Boolean)


207
208
209
210
211
212
213
214
215
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 207

class AdvancedSecurityOptionsInput < Struct.new(
  :enabled,
  :internal_user_database_enabled,
  :master_user_options,
  :saml_options,
  :anonymous_auth_enabled)
  SENSITIVE = []
  include Aws::Structure
end

#master_user_optionsTypes::MasterUserOptions

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



207
208
209
210
211
212
213
214
215
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 207

class AdvancedSecurityOptionsInput < Struct.new(
  :enabled,
  :internal_user_database_enabled,
  :master_user_options,
  :saml_options,
  :anonymous_auth_enabled)
  SENSITIVE = []
  include Aws::Structure
end

#saml_optionsTypes::SAMLOptionsInput

Specifies the SAML application configuration for the domain.



207
208
209
210
211
212
213
214
215
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 207

class AdvancedSecurityOptionsInput < Struct.new(
  :enabled,
  :internal_user_database_enabled,
  :master_user_options,
  :saml_options,
  :anonymous_auth_enabled)
  SENSITIVE = []
  include Aws::Structure
end