term_for_reports
Creates, updates, deletes, gets or lists a term_for_reports resource.
Overview
| Name | term_for_reports |
| Type | Resource |
| Id | aws.artifact.term_for_reports |
Fields
The following fields are returned by SELECT queries:
- get_term_for_report
| Name | Datatype | Description |
|---|---|---|
document_presigned_url | string | Presigned S3 url to access the term content. |
term_token | string | Unique token representing this request event. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_term_for_report | select | reportId, region | reportVersion | Get 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
reportId | string | Unique resource ID for the report resource. |
reportVersion | integer (int64) | Version for the report resource. |
SELECT examples
- get_term_for_report
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 }}'
;