Class: Aws::ElastiCache::Types::ModifyUserGroupMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElastiCache::Types::ModifyUserGroupMessage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticache/types.rb
Overview
Note:
When making an API call, you may pass ModifyUserGroupMessage data as a hash:
{
user_group_id: "String", # required
user_ids_to_add: ["UserId"],
user_ids_to_remove: ["UserId"],
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#user_group_id ⇒ String
The ID of the user group.
-
#user_ids_to_add ⇒ Array<String>
The list of user IDs to add to the user group.
-
#user_ids_to_remove ⇒ Array<String>
The list of user IDs to remove from the user group.
Instance Attribute Details
#user_group_id ⇒ String
The ID of the user group.
7005 7006 7007 7008 7009 7010 7011 |
# File 'lib/aws-sdk-elasticache/types.rb', line 7005 class ModifyUserGroupMessage < Struct.new( :user_group_id, :user_ids_to_add, :user_ids_to_remove) SENSITIVE = [] include Aws::Structure end |
#user_ids_to_add ⇒ Array<String>
The list of user IDs to add to the user group.
7005 7006 7007 7008 7009 7010 7011 |
# File 'lib/aws-sdk-elasticache/types.rb', line 7005 class ModifyUserGroupMessage < Struct.new( :user_group_id, :user_ids_to_add, :user_ids_to_remove) SENSITIVE = [] include Aws::Structure end |
#user_ids_to_remove ⇒ Array<String>
The list of user IDs to remove from the user group.
7005 7006 7007 7008 7009 7010 7011 |
# File 'lib/aws-sdk-elasticache/types.rb', line 7005 class ModifyUserGroupMessage < Struct.new( :user_group_id, :user_ids_to_add, :user_ids_to_remove) SENSITIVE = [] include Aws::Structure end |