Skip to main content

received_grants

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

Overview

Namereceived_grants
TypeResource
Idaws.license_manager.received_grants

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
grantsarrayReceived grant details.
next_tokenstringToken for the next set of results.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_received_grantsselectregionLists grants that are received. Received grants are grants created while specifying the recipient as this Amazon Web Services account, your organization, or an organizational unit (OU) to which this member account 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

Lists grants that are received. Received grants are grants created while specifying the recipient as this Amazon Web Services account, your organization, or an organizational unit (OU) to which this member account belongs.

SELECT
grants,
next_token
FROM aws.license_manager.received_grants
WHERE region = '{{ region }}' -- required
;