Skip to main content

depot_urls

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

Overview

Namedepot_urls
TypeResource
Idaws.evs.depot_urls

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
depot_urlstringThe URL for accessing the Amazon EVS Custom Addon depot. This URL includes the authentication token as a path component.
tokenstringThe authentication token for depot access. This token is included in the depot URL and is used to authenticate requests.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_depot_urlselectregionReturns a URL and authentication token for accessing the Amazon EVS Custom Addon depot. Configure the depot URL as a download source in vSphere Lifecycle Manager (vLCM) to sync and install the Amazon EVS Custom Addon. The depot URL remains active until you rotate the authentication token by calling this action with rotate set to true.

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)

SELECT examples

Returns a URL and authentication token for accessing the Amazon EVS Custom Addon depot. Configure the depot URL as a download source in vSphere Lifecycle Manager (vLCM) to sync and install the Amazon EVS Custom Addon. The depot URL remains active until you rotate the authentication token by calling this action with rotate set to true.

SELECT
depot_url,
token
FROM aws.evs.depot_urls
WHERE region = '{{ region }}' -- required
;