Skip to main content

artifact_urls

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

Overview

Nameartifact_urls
TypeResource
Idaws.amplify.artifact_urls

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
artifact_idstringThe unique ID for an artifact. (pattern: <code>(?s).*</code>)
artifact_urlstringThe presigned URL for the artifact.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_artifact_urlselectartifact_id, regionReturns the artifact info that corresponds to an artifact id.

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
artifact_idstringThe unique ID for an artifact.
regionstringAWS region (default: us-east-1)

SELECT examples

Returns the artifact info that corresponds to an artifact id.

SELECT
artifact_id,
artifact_url
FROM aws.amplify.artifact_urls
WHERE artifact_id = '{{ artifact_id }}' -- required
AND region = '{{ region }}' -- required
;