Class: Aws::MemoryDB::Types::AuthenticationMode

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

#passwordsArray<String>

The password(s) used for authentication

Returns:

  • (Array<String>)


144
145
146
147
148
149
# File 'gems/aws-sdk-memorydb/lib/aws-sdk-memorydb/types.rb', line 144

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

#typeString

Indicates whether the user requires a password to authenticate. All newly-created users require a password.

Returns:

  • (String)


144
145
146
147
148
149
# File 'gems/aws-sdk-memorydb/lib/aws-sdk-memorydb/types.rb', line 144

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