Class: Aws::ElasticsearchService::Types::AdvancedSecurityOptions

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.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#enabledBoolean

True if advanced security is enabled.

Returns:

  • (Boolean)


176
177
178
179
180
181
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 176

class AdvancedSecurityOptions < Struct.new(
  :enabled,
  :internal_user_database_enabled)
  SENSITIVE = []
  include Aws::Structure
end

#internal_user_database_enabledBoolean

True if the internal user database is enabled.

Returns:

  • (Boolean)


176
177
178
179
180
181
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 176

class AdvancedSecurityOptions < Struct.new(
  :enabled,
  :internal_user_database_enabled)
  SENSITIVE = []
  include Aws::Structure
end