report_creations
Creates, updates, deletes, gets or lists a report_creations resource.
Overview
| Name | report_creations |
| Type | Resource |
| Id | aws.resourcegroupstaggingapi.report_creations |
Fields
The following fields are returned by SELECT queries:
- describe_report_creation
| Name | Datatype | Description |
|---|---|---|
error_message | string | Details of the common errors that all operations return. |
s3_location | string | The path to the Amazon S3 bucket where the report was stored on creation. |
status | string | Reports the status of the operation. The operation status can be one of the following: RUNNING - Report creation is in progress. SUCCEEDED - Report creation is complete. You can open the report from the Amazon S3 bucket that you specified when you ran StartReportCreation. FAILED - Report creation timed out or the Amazon S3 bucket is not accessible. NO REPORT - No report was generated in the last 90 days. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_report_creation | select | region | Describes the status of the StartReportCreation operation. You can call this operation only from the organization's management account and from the us-east-1 Region. |
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
- describe_report_creation
Describes the status of the StartReportCreation operation. You can call this operation only from the organization's management account and from the us-east-1 Region.
SELECT
error_message,
s3_location,
status
FROM aws.resourcegroupstaggingapi.report_creations
WHERE region = '{{ region }}' -- required
;