Class: Aws::MemoryDB::Types::CreateUserRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::MemoryDB::Types::CreateUserRequest
- 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.
-
#tags ⇒ Array<Types::Tag>
A list of tags to be added to this resource.
-
#user_name ⇒ String
The name of the user.
Instance Attribute Details
#access_string ⇒ String
Access permissions string used for this user.
910 911 912 913 914 915 916 917 |
# File 'lib/aws-sdk-memorydb/types.rb', line 910 class CreateUserRequest < Struct.new( :user_name, :authentication_mode, :access_string, :tags) SENSITIVE = [] include Aws::Structure end |
#authentication_mode ⇒ Types::AuthenticationMode
Denotes the user’s authentication properties, such as whether it requires a password to authenticate.
910 911 912 913 914 915 916 917 |
# File 'lib/aws-sdk-memorydb/types.rb', line 910 class CreateUserRequest < Struct.new( :user_name, :authentication_mode, :access_string, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
A list of tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a tag value, although null is accepted.
910 911 912 913 914 915 916 917 |
# File 'lib/aws-sdk-memorydb/types.rb', line 910 class CreateUserRequest < Struct.new( :user_name, :authentication_mode, :access_string, :tags) SENSITIVE = [] include Aws::Structure end |
#user_name ⇒ String
The name of the user. This value must be unique as it also serves as the user identifier.
910 911 912 913 914 915 916 917 |
# File 'lib/aws-sdk-memorydb/types.rb', line 910 class CreateUserRequest < Struct.new( :user_name, :authentication_mode, :access_string, :tags) SENSITIVE = [] include Aws::Structure end |