Class: Aws::MemoryDB::Types::Authentication

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-memorydb/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

Instance Attribute Details

#password_countInteger

The number of passwords belonging to the user. The maximum is two.

Returns:

  • (Integer)


123
124
125
126
127
128
# File 'gems/aws-sdk-memorydb/lib/aws-sdk-memorydb/types.rb', line 123

class Authentication < Struct.new(
  :type,
  :password_count)
  SENSITIVE = []
  include Aws::Structure
end

#typeString

Indicates whether the user requires a password to authenticate.

Returns:

  • (String)


123
124
125
126
127
128
# File 'gems/aws-sdk-memorydb/lib/aws-sdk-memorydb/types.rb', line 123

class Authentication < Struct.new(
  :type,
  :password_count)
  SENSITIVE = []
  include Aws::Structure
end