Class: Aws::WorkMail::Types::DeleteUserRequest

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-workmail/lib/aws-sdk-workmail/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#organization_idString

The organization that contains the user to be deleted.

Returns:

  • (String)


1123
1124
1125
1126
1127
1128
# File 'gems/aws-sdk-workmail/lib/aws-sdk-workmail/types.rb', line 1123

class DeleteUserRequest < Struct.new(
  :organization_id,
  :user_id)
  SENSITIVE = []
  include Aws::Structure
end

#user_idString

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

Returns:

  • (String)


1123
1124
1125
1126
1127
1128
# File 'gems/aws-sdk-workmail/lib/aws-sdk-workmail/types.rb', line 1123

class DeleteUserRequest < Struct.new(
  :organization_id,
  :user_id)
  SENSITIVE = []
  include Aws::Structure
end