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