aws.workmail.list_mailbox_permissions
Example SQL Queries
SELECT * FROMaws.workmail.list_mailbox_permissionsWHERE"organization_id" = 'VALUE'AND "entity_id" = 'VALUE';Description
Lists the mailbox permissions associated with a user, group, or resource mailbox.
Table Definition
| Column Name | Column Data Type |
|---|---|
| entity_id Required Input Column The identifier of the user, or resource for which to list mailbox permissions. The entity ID can accept UserId or ResourceId, Username or Resourcename, or email.
| VARCHAR |
| organization_id Required Input Column The identifier of the organization under which the user, group, or resource exists. | VARCHAR |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| _aws_region Input Column The AWS region to use. | VARCHAR |
| grantee_id The identifier of the user, group, or resource to which the permissions are granted. | VARCHAR |
| grantee_type The type of user, group, or resource referred to in GranteeId. | VARCHAR |
| permission_values The permissions granted to the grantee. SEND_AS allows the grantee to send email as the owner of the mailbox (the grantee is not mentioned on these emails). SEND_ON_BEHALF allows the grantee to send email on behalf of the owner of the mailbox (the grantee is not mentioned as the physical sender of these emails). FULL_ACCESS allows the grantee full access to the mailbox, irrespective of other folder-level permissions set on the mailbox. | VARCHAR[] |
Show child fields
| |