Class: Aws::ElastiCache::Types::ModifyUserMessage

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

Overview

Note:

When making an API call, you may pass ModifyUserMessage data as a hash:

{
  user_id: "UserId", # required
  access_string: "AccessString",
  append_access_string: "AccessString",
  passwords: ["String"],
  no_password_required: false,
  authentication_mode: {
    type: "password", # accepts password, no-password-required, iam
    passwords: ["String"],
  },
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#access_stringString

Access permissions string used for this user.



7054
7055
7056
7057
7058
7059
7060
7061
7062
7063
# File 'lib/aws-sdk-elasticache/types.rb', line 7054

class ModifyUserMessage < Struct.new(
  :user_id,
  :access_string,
  :append_access_string,
  :passwords,
  :no_password_required,
  :authentication_mode)
  SENSITIVE = []
  include Aws::Structure
end

#append_access_stringString

Adds additional user permissions to the access string.



7054
7055
7056
7057
7058
7059
7060
7061
7062
7063
# File 'lib/aws-sdk-elasticache/types.rb', line 7054

class ModifyUserMessage < Struct.new(
  :user_id,
  :access_string,
  :append_access_string,
  :passwords,
  :no_password_required,
  :authentication_mode)
  SENSITIVE = []
  include Aws::Structure
end

#authentication_modeTypes::AuthenticationMode

Specifies how to authenticate the user.



7054
7055
7056
7057
7058
7059
7060
7061
7062
7063
# File 'lib/aws-sdk-elasticache/types.rb', line 7054

class ModifyUserMessage < Struct.new(
  :user_id,
  :access_string,
  :append_access_string,
  :passwords,
  :no_password_required,
  :authentication_mode)
  SENSITIVE = []
  include Aws::Structure
end

#no_password_requiredBoolean

Indicates no password is required for the user.



7054
7055
7056
7057
7058
7059
7060
7061
7062
7063
# File 'lib/aws-sdk-elasticache/types.rb', line 7054

class ModifyUserMessage < Struct.new(
  :user_id,
  :access_string,
  :append_access_string,
  :passwords,
  :no_password_required,
  :authentication_mode)
  SENSITIVE = []
  include Aws::Structure
end

#passwordsArray<String>

The passwords belonging to the user. You are allowed up to two.



7054
7055
7056
7057
7058
7059
7060
7061
7062
7063
# File 'lib/aws-sdk-elasticache/types.rb', line 7054

class ModifyUserMessage < Struct.new(
  :user_id,
  :access_string,
  :append_access_string,
  :passwords,
  :no_password_required,
  :authentication_mode)
  SENSITIVE = []
  include Aws::Structure
end

#user_idString

The ID of the user.



7054
7055
7056
7057
7058
7059
7060
7061
7062
7063
# File 'lib/aws-sdk-elasticache/types.rb', line 7054

class ModifyUserMessage < Struct.new(
  :user_id,
  :access_string,
  :append_access_string,
  :passwords,
  :no_password_required,
  :authentication_mode)
  SENSITIVE = []
  include Aws::Structure
end