Skip to main content

distributed_grants

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

Overview

Namedistributed_grants
TypeResource
Idaws.license_manager.distributed_grants

Fields

The following fields are returned by SELECT queries:

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

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_distributed_grantsselectregionLists the grants distributed for the specified license.

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 distributed for the specified license.

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