Skip to main content

evidence_folders_by_assessment_controls

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

Overview

Nameevidence_folders_by_assessment_controls
TypeResource
Idaws.auditmanager.evidence_folders_by_assessment_controls

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
evidence_foldersarrayThe list of evidence folders that the GetEvidenceFoldersByAssessmentControl API returned.
next_tokenstringThe pagination token that's used to fetch the next set of results. (pattern: <code>^[A-Za-z0-9+/=]*$</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_evidence_folders_by_assessment_controlselectassessment_id, control_set_id, control_id, regionnextToken, maxResultsGets a list of evidence folders that are associated with a specified control in an Audit Manager assessment.

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 identifier for the assessment.
control_idstringThe identifier for the control.
control_set_idstringThe identifier for the control set.
regionstringAWS region (default: us-east-1)
maxResultsintegerRepresents the maximum number of results on a page or for an API request call.
nextTokenstringThe pagination token that's used to fetch the next set of results.

SELECT examples

Gets a list of evidence folders that are associated with a specified control in an Audit Manager assessment.

SELECT
evidence_folders,
next_token
FROM aws.auditmanager.evidence_folders_by_assessment_controls
WHERE assessment_id = '{{ assessment_id }}' -- required
AND control_set_id = '{{ control_set_id }}' -- required
AND control_id = '{{ control_id }}' -- required
AND region = '{{ region }}' -- required
AND nextToken = '{{ nextToken }}'
AND maxResults = '{{ maxResults }}'
;