Class: Aws::WorkMail::Types::DeleteUserRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::WorkMail::Types::DeleteUserRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-workmail/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#organization_id ⇒ String
The organization that contains the user to be deleted.
-
#user_id ⇒ String
The identifier of the user to be deleted.
Instance Attribute Details
#organization_id ⇒ String
The organization that contains the user to be deleted.
1226 1227 1228 1229 1230 1231 |
# File 'lib/aws-sdk-workmail/types.rb', line 1226 class DeleteUserRequest < Struct.new( :organization_id, :user_id) SENSITIVE = [] include Aws::Structure end |
#user_id ⇒ String
The identifier of the user to be deleted.
The identifier can be the UserId or Username. The following identity formats are available:
-
User ID: 12345678-1234-1234-1234-123456789012 or S-1-1-12-1234567890-123456789-123456789-1234
-
User name: user
1226 1227 1228 1229 1230 1231 |
# File 'lib/aws-sdk-workmail/types.rb', line 1226 class DeleteUserRequest < Struct.new( :organization_id, :user_id) SENSITIVE = [] include Aws::Structure end |