Class: Aws::ElastiCache::Types::AuthenticationMode
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElastiCache::Types::AuthenticationMode
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticache/types.rb
Overview
Specifies the authentication mode to use.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#passwords ⇒ Array<String>
Specifies the passwords to use for authentication if ‘Type` is set to `password`.
-
#type ⇒ String
Specifies the authentication type.
Instance Attribute Details
#passwords ⇒ Array<String>
Specifies the passwords to use for authentication if ‘Type` is set to `password`.
113 114 115 116 117 118 |
# File 'lib/aws-sdk-elasticache/types.rb', line 113 class AuthenticationMode < Struct.new( :type, :passwords) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
Specifies the authentication type. Possible options are IAM authentication, password and no password.
113 114 115 116 117 118 |
# File 'lib/aws-sdk-elasticache/types.rb', line 113 class AuthenticationMode < Struct.new( :type, :passwords) SENSITIVE = [] include Aws::Structure end |