Class: Aws::ElastiCache::Types::CreateUserMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElastiCache::Types::CreateUserMessage
- Defined in:
- gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb
Overview
Note:
When making an API call, you may pass CreateUserMessage data as a hash:
{
user_id: "UserId", # required
user_name: "UserName", # required
engine: "EngineType", # required
passwords: ["String"],
access_string: "AccessString", # required
no_password_required: false,
tags: [
{
key: "String",
value: "String",
},
],
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#access_string ⇒ String
Access permissions string used for this user.
-
#engine ⇒ String
The current supported value is Redis.
-
#no_password_required ⇒ Boolean
Indicates a password is not required for this user.
-
#passwords ⇒ Array<String>
Passwords used for this user.
-
#tags ⇒ Array<Types::Tag>
A list of tags to be added to this resource.
-
#user_id ⇒ String
The ID of the user.
-
#user_name ⇒ String
The username of the user.
Instance Attribute Details
#access_string ⇒ String
Access permissions string used for this user.
3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 |
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 3091 class CreateUserMessage < Struct.new( :user_id, :user_name, :engine, :passwords, :access_string, :no_password_required, :tags) SENSITIVE = [] include Aws::Structure end |
#engine ⇒ String
The current supported value is Redis.
3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 |
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 3091 class CreateUserMessage < Struct.new( :user_id, :user_name, :engine, :passwords, :access_string, :no_password_required, :tags) SENSITIVE = [] include Aws::Structure end |
#no_password_required ⇒ Boolean
Indicates a password is not required for this user.
3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 |
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 3091 class CreateUserMessage < Struct.new( :user_id, :user_name, :engine, :passwords, :access_string, :no_password_required, :tags) SENSITIVE = [] include Aws::Structure end |
#passwords ⇒ Array<String>
Passwords used for this user. You can create up to two passwords for each user.
3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 |
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 3091 class CreateUserMessage < Struct.new( :user_id, :user_name, :engine, :passwords, :access_string, :no_password_required, :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.
3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 |
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 3091 class CreateUserMessage < Struct.new( :user_id, :user_name, :engine, :passwords, :access_string, :no_password_required, :tags) SENSITIVE = [] include Aws::Structure end |
#user_id ⇒ String
The ID of the user.
3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 |
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 3091 class CreateUserMessage < Struct.new( :user_id, :user_name, :engine, :passwords, :access_string, :no_password_required, :tags) SENSITIVE = [] include Aws::Structure end |
#user_name ⇒ String
The username of the user.
3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 |
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 3091 class CreateUserMessage < Struct.new( :user_id, :user_name, :engine, :passwords, :access_string, :no_password_required, :tags) SENSITIVE = [] include Aws::Structure end |