Skip to main content

report_creations

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

Overview

Namereport_creations
TypeResource
Idaws.resourcegroupstaggingapi.report_creations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
error_messagestringDetails of the common errors that all operations return.
s3_locationstringThe path to the Amazon S3 bucket where the report was stored on creation.
statusstringReports 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:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_report_creationselectregionDescribes 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.

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

SELECT examples

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
;