Skip to main content

agent_task_response_urls

Creates, updates, deletes, gets or lists an agent_task_response_urls resource.

Overview

Nameagent_task_response_urls
TypeResource
Idaws.groundstation.agent_task_response_urls

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
agent_idstringUUID 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_urlstringPresigned URL for uploading agent task response logs.
task_idstringGUID 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:

NameAccessible byRequired ParamsOptional ParamsDescription
get_agent_task_response_urlselectagent_id, task_id, regionFor 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.

NameDatatypeDescription
agent_idstringUUID of agent requesting the response URL.
regionstringAWS region (default: us-east-1)
task_idstringGUID of the agent task for which the response URL is being requested.

SELECT examples

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
;