You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

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

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing ModifyUserMessage as input to an Aws::Client method, you can use a vanilla Hash:

{
  user_id: "UserId", # required
  access_string: "AccessString",
  append_access_string: "AccessString",
  passwords: ["String"],
  no_password_required: false,
}

Instance Attribute Summary collapse

Instance Attribute Details

#access_stringString

Access permissions string used for this user account.

Returns:

  • (String)

    Access permissions string used for this user account.

#append_access_stringString

Adds additional user permissions to the access string.

Returns:

  • (String)

    Adds additional user permissions to the access string.

#no_password_requiredBoolean

Indicates no password is required for the user account.

Returns:

  • (Boolean)

    Indicates no password is required for the user account.

#passwordsArray<String>

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

Returns:

  • (Array<String>)

    The passwords belonging to the user account.

#user_idString

The ID of the user.

Returns:

  • (String)

    The ID of the user.