Skip to main content

entities

Creates, updates, deletes, gets or lists an entities resource.

Overview

Nameentities
TypeResource
Idaws.workmail.entities

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
entity_idstringThe entity ID under which the entity exists.
namestringUsername, GroupName, or ResourceName based on entity type.
typestringEntity type. (GROUP, USER, RESOURCE)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_entityselectregionReturns basic details about an entity in WorkMail.

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

Returns basic details about an entity in WorkMail.

SELECT
entity_id,
name,
type
FROM aws.workmail.entities
WHERE region = '{{ region }}' -- required
;