failures_for_license_configuration_operations
Creates, updates, deletes, gets or lists a failures_for_license_configuration_operations resource.
Overview
| Name | failures_for_license_configuration_operations |
| Type | Resource |
| Id | aws.license_manager.failures_for_license_configuration_operations |
Fields
The following fields are returned by SELECT queries:
- list_failures_for_license_configuration_operations
| Name | Datatype | Description |
|---|---|---|
license_operation_failure_list | array | License configuration operations that failed. |
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_failures_for_license_configuration_operations | select | region | Lists the license configuration operations that failed. |
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_failures_for_license_configuration_operations
Lists the license configuration operations that failed.
SELECT
license_operation_failure_list,
next_token
FROM aws.license_manager.failures_for_license_configuration_operations
WHERE region = '{{ region }}' -- required
;