Class: Aws::MemoryDB::Types::UpdateUserRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::MemoryDB::Types::UpdateUserRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-memorydb/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#access_string ⇒ String
Access permissions string used for this user.
-
#authentication_mode ⇒ Types::AuthenticationMode
Denotes the user’s authentication properties, such as whether it requires a password to authenticate.
-
#user_name ⇒ String
The name of the user.
Instance Attribute Details
#access_string ⇒ String
Access permissions string used for this user.
3293 3294 3295 3296 3297 3298 3299 |
# File 'lib/aws-sdk-memorydb/types.rb', line 3293 class UpdateUserRequest < Struct.new( :user_name, :authentication_mode, :access_string) SENSITIVE = [] include Aws::Structure end |
#authentication_mode ⇒ Types::AuthenticationMode
Denotes the user’s authentication properties, such as whether it requires a password to authenticate.
3293 3294 3295 3296 3297 3298 3299 |
# File 'lib/aws-sdk-memorydb/types.rb', line 3293 class UpdateUserRequest < Struct.new( :user_name, :authentication_mode, :access_string) SENSITIVE = [] include Aws::Structure end |
#user_name ⇒ String
The name of the user
3293 3294 3295 3296 3297 3298 3299 |
# File 'lib/aws-sdk-memorydb/types.rb', line 3293 class UpdateUserRequest < Struct.new( :user_name, :authentication_mode, :access_string) SENSITIVE = [] include Aws::Structure end |