Class: Aws::ElastiCache::Types::DeleteUserGroupMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElastiCache::Types::DeleteUserGroupMessage
- Defined in:
- gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb
Overview
Note:
When making an API call, you may pass DeleteUserGroupMessage data as a hash:
{
user_group_id: "String", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#user_group_id ⇒ String
The ID of the user group.
Instance Attribute Details
#user_group_id ⇒ String
The ID of the user group.
3347 3348 3349 3350 3351 |
# File 'gems/aws-sdk-elasticache/lib/aws-sdk-elasticache/types.rb', line 3347 class DeleteUserGroupMessage < Struct.new( :user_group_id) SENSITIVE = [] include Aws::Structure end |