distributed_grants
Creates, updates, deletes, gets or lists a distributed_grants resource.
Overview
| Name | distributed_grants |
| Type | Resource |
| Id | aws.license_manager.distributed_grants |
Fields
The following fields are returned by SELECT queries:
- list_distributed_grants
| Name | Datatype | Description |
|---|---|---|
grants | array | Distributed grant details. |
next_token | string | Token for the next set of results. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_distributed_grants | select | region | Lists 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_distributed_grants
Lists the grants distributed for the specified license.
SELECT
grants,
next_token
FROM aws.license_manager.distributed_grants
WHERE region = '{{ region }}' -- required
;