Class: Aws::WorkMail::Types::UpdateMailboxQuotaRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::WorkMail::Types::UpdateMailboxQuotaRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-workmail/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#mailbox_quota ⇒ Integer
The updated mailbox quota, in MB, for the specified user.
-
#organization_id ⇒ String
The identifier for the organization that contains the user for whom to update the mailbox quota.
-
#user_id ⇒ String
The identifer for the user for whom to update the mailbox quota.
Instance Attribute Details
#mailbox_quota ⇒ Integer
The updated mailbox quota, in MB, for the specified user.
5220 5221 5222 5223 5224 5225 5226 |
# File 'lib/aws-sdk-workmail/types.rb', line 5220 class UpdateMailboxQuotaRequest < Struct.new( :organization_id, :user_id, :mailbox_quota) SENSITIVE = [] include Aws::Structure end |
#organization_id ⇒ String
The identifier for the organization that contains the user for whom to update the mailbox quota.
5220 5221 5222 5223 5224 5225 5226 |
# File 'lib/aws-sdk-workmail/types.rb', line 5220 class UpdateMailboxQuotaRequest < Struct.new( :organization_id, :user_id, :mailbox_quota) SENSITIVE = [] include Aws::Structure end |
#user_id ⇒ String
The identifer for the user for whom to update the mailbox quota.
The identifier can be the UserId, Username, or email. The following identity formats are available:
-
User ID: 12345678-1234-1234-1234-123456789012 or S-1-1-12-1234567890-123456789-123456789-1234
-
Email address: [email protected]
-
User name: user
5220 5221 5222 5223 5224 5225 5226 |
# File 'lib/aws-sdk-workmail/types.rb', line 5220 class UpdateMailboxQuotaRequest < Struct.new( :organization_id, :user_id, :mailbox_quota) SENSITIVE = [] include Aws::Structure end |