Skip to main content

resource_delegates

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

Overview

Nameresource_delegates
TypeResource
Idaws.workmail.resource_delegates

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe identifier for the user or group associated as the resource's delegate.
typestringThe type of the delegate: user or group. (GROUP, USER)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_resource_delegatesselectregionLists the delegates associated with a resource. Users and groups can be resource delegates and answer requests on behalf of the resource.

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

Lists the delegates associated with a resource. Users and groups can be resource delegates and answer requests on behalf of the resource.

SELECT
id,
type
FROM aws.workmail.resource_delegates
WHERE region = '{{ region }}' -- required
;