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,
}
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.
-
#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.
2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 |
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 2876 class CreateUserMessage < Struct.new( :user_id, :user_name, :engine, :passwords, :access_string, :no_password_required) SENSITIVE = [] include Aws::Structure end |
#engine ⇒ String
The current supported value is Redis.
2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 |
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 2876 class CreateUserMessage < Struct.new( :user_id, :user_name, :engine, :passwords, :access_string, :no_password_required) SENSITIVE = [] include Aws::Structure end |
#no_password_required ⇒ Boolean
Indicates a password is not required for this user.
2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 |
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 2876 class CreateUserMessage < Struct.new( :user_id, :user_name, :engine, :passwords, :access_string, :no_password_required) SENSITIVE = [] include Aws::Structure end |
#passwords ⇒ Array<String>
Passwords used for this user. You can create up to two passwords for each user.
2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 |
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 2876 class CreateUserMessage < Struct.new( :user_id, :user_name, :engine, :passwords, :access_string, :no_password_required) SENSITIVE = [] include Aws::Structure end |
#user_id ⇒ String
The ID of the user.
2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 |
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 2876 class CreateUserMessage < Struct.new( :user_id, :user_name, :engine, :passwords, :access_string, :no_password_required) SENSITIVE = [] include Aws::Structure end |
#user_name ⇒ String
The username of the user.
2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 |
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 2876 class CreateUserMessage < Struct.new( :user_id, :user_name, :engine, :passwords, :access_string, :no_password_required) SENSITIVE = [] include Aws::Structure end |