Class: Aws::MemoryDB::Types::Authentication
- Inherits:
-
Struct
- Object
- Struct
- Aws::MemoryDB::Types::Authentication
- 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
-
#password_count ⇒ Integer
The number of passwords belonging to the user.
-
#type ⇒ String
Indicates whether the user requires a password to authenticate.
Instance Attribute Details
#password_count ⇒ Integer
The number of passwords belonging to the user. The maximum is two.
123 124 125 126 127 128 |
# File 'lib/aws-sdk-memorydb/types.rb', line 123 class Authentication < Struct.new( :type, :password_count) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
Indicates whether the user requires a password to authenticate.
123 124 125 126 127 128 |
# File 'lib/aws-sdk-memorydb/types.rb', line 123 class Authentication < Struct.new( :type, :password_count) SENSITIVE = [] include Aws::Structure end |