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
- Struct
- Aws::ElasticsearchService::Types::AdvancedSecurityOptionsInput
- Defined in:
- (unknown)
Overview
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
-
#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
#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.