Class: Aws::ElastiCache::Types::CreateUserGroupMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElastiCache::Types::CreateUserGroupMessage
- Defined in:
- gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb
Overview
Note:
When making an API call, you may pass CreateUserGroupMessage data as a hash:
{
user_group_id: "String", # required
engine: "EngineType", # required
user_ids: ["UserId"],
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#engine ⇒ String
The current supported value is Redis.
-
#user_group_id ⇒ String
The ID of the user group.
-
#user_ids ⇒ Array<String>
The list of user IDs that belong to the user group.
Instance Attribute Details
#engine ⇒ String
The current supported value is Redis.
2829 2830 2831 2832 2833 2834 2835 |
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 2829 class CreateUserGroupMessage < Struct.new( :user_group_id, :engine, :user_ids) SENSITIVE = [] include Aws::Structure end |
#user_group_id ⇒ String
The ID of the user group.
2829 2830 2831 2832 2833 2834 2835 |
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 2829 class CreateUserGroupMessage < Struct.new( :user_group_id, :engine, :user_ids) SENSITIVE = [] include Aws::Structure end |
#user_ids ⇒ Array<String>
The list of user IDs that belong to the user group.
2829 2830 2831 2832 2833 2834 2835 |
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 2829 class CreateUserGroupMessage < Struct.new( :user_group_id, :engine, :user_ids) SENSITIVE = [] include Aws::Structure end |