Skip to main content

prospecting_from_engagement_tasks

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

Overview

Nameprospecting_from_engagement_tasks
TypeResource
Idaws.partnercentral_selling.prospecting_from_engagement_tasks

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
end_timestring (date-time)The timestamp indicating when the task finished processing. This field is absent if the task is still in progress. The format follows ISO 8601 date-time notation.
engagementsarrayAn array of EngagementProspectingResult entries for each engagement in the task. Each entry contains the processing status. For successfully completed engagements, includes the prospecting context identifier. For failed engagements, includes an error code and message.
start_timestring (date-time)The timestamp indicating when the task was initiated. The format follows ISO 8601 date-time notation.
task_arnstringThe Amazon Resource Name (ARN) of the task. (pattern: <code>arn:aws:partnercentral-selling:.:.:catalog/.*/prospecting-from-engagement-task/task-[0-9a-z]{14}</code>)
task_idstringThe unique identifier of the task. (pattern: <code>task-[0-9a-z]{14}</code>)
task_namestringThe descriptive name of the task that you provided when you created it.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_prospecting_from_engagement_taskselectregionRetrieves the details and current status of a prospecting task previously started with StartProspectingFromEngagementTask to enable polling for completion and access to per-engagement processing results.
list_prospecting_from_engagement_tasksselectregionLists all prospecting tasks initiated by the caller's account. Supports optional filters by task identifier, task name, or start time range. Results can be sorted using configurable options. The response is paginated. Use the NextToken value from each response to retrieve subsequent pages.

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

Retrieves the details and current status of a prospecting task previously started with StartProspectingFromEngagementTask to enable polling for completion and access to per-engagement processing results.

SELECT
end_time,
engagements,
start_time,
task_arn,
task_id,
task_name
FROM aws.partnercentral_selling.prospecting_from_engagement_tasks
WHERE region = '{{ region }}' -- required
;