Skip to main content

assessment_report_urls

Creates, updates, deletes, gets or lists an assessment_report_urls resource.

Overview

Nameassessment_report_urls
TypeResource
Idaws.auditmanager.assessment_report_urls

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
hyperlink_namestringThe name or word that's used as a hyperlink to the URL. (pattern: <code>^[\w\W\s\S]*$</code>)
linkstringThe unique identifier for the internet resource. (pattern: <code>^(https?://)?(www.)?[a-zA-Z0-9-_]+([.]+[a-zA-Z]+)+[/\w]*$</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_assessment_report_urlselectassessment_report_id, assessment_id, regionGets the URL of an assessment report in Audit Manager.

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
assessment_idstringThe unique identifier for the assessment.
assessment_report_idstringThe unique identifier for the assessment report.
regionstringAWS region (default: us-east-1)

SELECT examples

Gets the URL of an assessment report in Audit Manager.

SELECT
hyperlink_name,
link
FROM aws.auditmanager.assessment_report_urls
WHERE assessment_report_id = '{{ assessment_report_id }}' -- required
AND assessment_id = '{{ assessment_id }}' -- required
AND region = '{{ region }}' -- required
;