Class: Aws::MemoryDB::Types::AuthenticationMode
- Inherits:
-
Struct
- Object
- Struct
- Aws::MemoryDB::Types::AuthenticationMode
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-memorydb/types.rb
Overview
Denotes the user’s authentication properties, such as whether it requires a password to authenticate. Used in output responses.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#passwords ⇒ Array<String>
The password(s) used for authentication.
-
#type ⇒ String
Indicates whether the user requires a password to authenticate.
Instance Attribute Details
#passwords ⇒ Array<String>
The password(s) used for authentication
144 145 146 147 148 149 |
# File 'lib/aws-sdk-memorydb/types.rb', line 144 class AuthenticationMode < Struct.new( :type, :passwords) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
Indicates whether the user requires a password to authenticate. All newly-created users require a password.
144 145 146 147 148 149 |
# File 'lib/aws-sdk-memorydb/types.rb', line 144 class AuthenticationMode < Struct.new( :type, :passwords) SENSITIVE = [] include Aws::Structure end |