received_licenses_for_organizations
Creates, updates, deletes, gets or lists a received_licenses_for_organizations resource.
Overview
| Name | received_licenses_for_organizations |
| Type | Resource |
| Id | aws.license_manager.received_licenses_for_organizations |
Fields
The following fields are returned by SELECT queries:
- list_received_licenses_for_organization
| Name | Datatype | Description |
|---|---|---|
licenses | array | Lists the licenses the organization has received. |
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_received_licenses_for_organization | select | region | Lists the licenses 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_received_licenses_for_organization
Lists the licenses received for all accounts in the organization.
SELECT
licenses,
next_token
FROM aws.license_manager.received_licenses_for_organizations
WHERE region = '{{ region }}' -- required
;