Skip to main content

term_for_reports

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

Overview

Nameterm_for_reports
TypeResource
Idaws.artifact.term_for_reports

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
document_presigned_urlstringPresigned S3 url to access the term content.
term_tokenstringUnique token representing this request event.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_term_for_reportselectreportId, regionreportVersionGet the Term content associated with a single report.

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)
reportIdstringUnique resource ID for the report resource.
reportVersioninteger (int64)Version for the report resource.

SELECT examples

Get the Term content associated with a single report.

SELECT
document_presigned_url,
term_token
FROM aws.artifact.term_for_reports
WHERE reportId = '{{ reportId }}' -- required
AND region = '{{ region }}' -- required
AND reportVersion = '{{ reportVersion }}'
;