depot_urls
Creates, updates, deletes, gets or lists a depot_urls resource.
Overview
| Name | depot_urls |
| Type | Resource |
| Id | aws.evs.depot_urls |
Fields
The following fields are returned by SELECT queries:
- get_depot_url
| Name | Datatype | Description |
|---|---|---|
depot_url | string | The URL for accessing the Amazon EVS Custom Addon depot. This URL includes the authentication token as a path component. |
token | string | The 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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_depot_url | select | region | 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. |
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 |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_depot_url
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
;