agent_task_response_urls
Creates, updates, deletes, gets or lists an agent_task_response_urls resource.
Overview
| Name | agent_task_response_urls |
| Type | Resource |
| Id | aws.groundstation.agent_task_response_urls |
Fields
The following fields are returned by SELECT queries:
- get_agent_task_response_url
| Name | Datatype | Description |
|---|---|---|
agent_id | string | UUID of the agent. (pattern: <code>[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}</code>) |
presigned_log_url | string | Presigned URL for uploading agent task response logs. |
task_id | string | GUID of the agent task. (pattern: <code>[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_agent_task_response_url | select | agent_id, task_id, region | For use by AWS Ground Station Agent and shouldn't be called directly. Gets a presigned URL for uploading agent task response logs. |
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 |
|---|---|---|
agent_id | string | UUID of agent requesting the response URL. |
region | string | AWS region (default: us-east-1) |
task_id | string | GUID of the agent task for which the response URL is being requested. |
SELECT examples
- get_agent_task_response_url
For use by AWS Ground Station Agent and shouldn't be called directly. Gets a presigned URL for uploading agent task response logs.
SELECT
agent_id,
presigned_log_url,
task_id
FROM aws.groundstation.agent_task_response_urls
WHERE agent_id = '{{ agent_id }}' -- required
AND task_id = '{{ task_id }}' -- required
AND region = '{{ region }}' -- required
;