Skip to main content

mailbox_details

Creates, updates, deletes, gets or lists a mailbox_details resource.

Overview

Namemailbox_details
TypeResource
Idaws.workmail.mailbox_details

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
mailbox_quotaintegerThe maximum allowed mailbox size, in MB, for the specified user.
mailbox_sizenumber (double)The current mailbox size, in MB, for the specified user.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_mailbox_detailsselectregionRequests a user's mailbox details for a specified organization and user.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Requests a user's mailbox details for a specified organization and user.

SELECT
mailbox_quota,
mailbox_size
FROM aws.workmail.mailbox_details
WHERE region = '{{ region }}' -- required
;