Class: Aws::ElasticsearchService::Types::AdvancedSecurityOptionsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticsearchService::Types::AdvancedSecurityOptionsInput
- 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
-
#anonymous_auth_enabled ⇒ Boolean
True if Anonymous auth is enabled.
-
#enabled ⇒ Boolean
True if advanced security is enabled.
-
#internal_user_database_enabled ⇒ Boolean
True if the internal user database is enabled.
-
#master_user_options ⇒ Types::MasterUserOptions
Credentials for the master user: username and password, ARN, or both.
-
#saml_options ⇒ Types::SAMLOptionsInput
Specifies the SAML application configuration for the domain.
Instance Attribute Details
#anonymous_auth_enabled ⇒ Boolean
True if Anonymous auth is enabled. Anonymous auth can be enabled only when AdvancedSecurity is enabled on existing domains.
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 |
#enabled ⇒ Boolean
True if advanced security is enabled.
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_enabled ⇒ Boolean
True if the internal user database is enabled.
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_options ⇒ Types::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_options ⇒ Types::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 |