Class: Aws::ElastiCache::Types::AuthenticationMode

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#passwordsArray<String>

Specifies the passwords to use for authentication if ‘Type` is set to `password`.

Returns:

  • (Array<String>)


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

#typeString

Specifies the authentication type. Possible options are IAM authentication, password and no password.

Returns:

  • (String)


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