Skip to main content

received_licenses_for_organizations

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

Overview

Namereceived_licenses_for_organizations
TypeResource
Idaws.license_manager.received_licenses_for_organizations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
licensesarrayLists the licenses 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_licenses_for_organizationselectregionLists 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;