Skip to main content

groups_for_entities

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

Overview

Namegroups_for_entities
TypeResource
Idaws.workmail.groups_for_entities

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
groupsarrayThe overview of groups in an organization.
next_tokenstringThe token to use to retrieve the next page of results. This value is null when there are no more results to return. (pattern: <code>[\S\s]*|[a-zA-Z0-9/+=]{1,1024}</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_groups_for_entityselectregionReturns all the groups to which an entity belongs.

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 all the groups to which an entity belongs.

SELECT
groups,
next_token
FROM aws.workmail.groups_for_entities
WHERE region = '{{ region }}' -- required
;