Skip to main content

received_grants_for_organizations

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

Overview

Namereceived_grants_for_organizations
TypeResource
Idaws.license_manager.received_grants_for_organizations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
grantsarrayLists the grants the organization has received.
next_tokenstringToken for the next set of results.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_received_grants_for_organizationselectregionLists the grants received for all accounts in the organization.

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 grants received for all accounts in the organization.

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