Class: Aws::ElastiCache::Types::Authentication

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb

Overview

Indicates whether the user requires a password to authenticate.

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)


92
93
94
95
96
97
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 92

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

#typeString

Indicates whether the user requires a password to authenticate.

Returns:

  • (String)


92
93
94
95
96
97
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 92

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