deployments
Creates, updates, deletes, gets or lists a deployments resource.
Overview
| Name | deployments |
| Type | Resource |
| Id | aws.sagemaker_edge.deployments |
Fields
The following fields are returned by SELECT queries:
- get_deployments
| Name | Datatype | Description |
|---|---|---|
deployments | array | Returns a list of the configurations of the active deployments on the device. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_deployments | select | region | Use to get the active deployments from a device. |
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_deployments
Use to get the active deployments from a device.
SELECT
deployments
FROM aws.sagemaker_edge.deployments
WHERE region = '{{ region }}' -- required
;