evidence_file_upload_urls
Creates, updates, deletes, gets or lists an evidence_file_upload_urls resource.
Overview
| Name | evidence_file_upload_urls |
| Type | Resource |
| Id | aws.auditmanager.evidence_file_upload_urls |
Fields
The following fields are returned by SELECT queries:
- get_evidence_file_upload_url
| Name | Datatype | Description |
|---|---|---|
evidence_file_name | string | The name of the uploaded manual evidence file that the presigned URL was generated for. (pattern: <code>.\S.</code>) |
upload_url | string | The presigned URL that was generated. (pattern: <code>.\S.</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_evidence_file_upload_url | select | fileName, region | 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. |
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 |
|---|---|---|
fileName | string | The 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. |
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_evidence_file_upload_url
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
;