Skip to main content

evidence_file_upload_urls

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

Overview

Nameevidence_file_upload_urls
TypeResource
Idaws.auditmanager.evidence_file_upload_urls

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
evidence_file_namestringThe name of the uploaded manual evidence file that the presigned URL was generated for. (pattern: <code>.\S.</code>)
upload_urlstringThe presigned URL that was generated. (pattern: <code>.\S.</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_evidence_file_upload_urlselectfileName, regionCreates a presigned Amazon S3 URL that can be used to upload a file as manual evidence. For instructions on how to use this operation, see Upload a file from your browser in the Audit Manager User Guide. The following restrictions apply to this operation: Maximum size of an individual evidence file: 100 MB Number of daily manual evidence uploads per control: 100 Supported file formats: See Supported file types for manual evidence in the Audit Manager User Guide For more information about Audit Manager service restrictions, see Quotas and restrictions for 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
fileNamestringThe file that you want to upload. For a list of supported file formats, see Supported file types for manual evidence in the Audit Manager User Guide.
regionstringAWS region (default: us-east-1)

SELECT examples

Creates a presigned Amazon S3 URL that can be used to upload a file as manual evidence. For instructions on how to use this operation, see Upload a file from your browser in the Audit Manager User Guide. The following restrictions apply to this operation: Maximum size of an individual evidence file: 100 MB Number of daily manual evidence uploads per control: 100 Supported file formats: See Supported file types for manual evidence in the Audit Manager User Guide For more information about Audit Manager service restrictions, see Quotas and restrictions for Audit Manager.

SELECT
evidence_file_name,
upload_url
FROM aws.auditmanager.evidence_file_upload_urls
WHERE fileName = '{{ fileName }}' -- required
AND region = '{{ region }}' -- required
;