Skip to main content

upload_urls

Creates, updates, deletes, gets or lists a upload_urls resource.

Overview

Nameupload_urls
TypeResource
Idaws.lexv2_models.upload_urls

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
create_upload_urlinsertregionGets a pre-signed S3 write URL that you use to upload the zip archive when importing a bot or a bot locale.

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
regionstringAWS region (default: us-east-1)

INSERT examples

Gets a pre-signed S3 write URL that you use to upload the zip archive when importing a bot or a bot locale.

INSERT INTO aws.lexv2_models.upload_urls (
region
)
SELECT
'{{ region }}'
RETURNING
import_id,
upload_url
;