Skip to main content

engagement_by_accepting_invitation_tasks

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

Overview

Nameengagement_by_accepting_invitation_tasks
TypeResource
Idaws.partnercentral_selling.engagement_by_accepting_invitation_tasks

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
engagement_invitation_idstringThe unique identifier of the engagement invitation that was accepted. (pattern: <code>engi-[0-9,a-z]{13}</code>)
messagestringDetailed message describing the failure and possible recovery steps.
opportunity_idstringUnique identifier of opportunity that was created. (pattern: <code>O[0-9]{1,19}</code>)
reason_codestringA code pointing to the specific reason for the failure. (InvitationAccessDenied, InvitationValidationFailed, EngagementAccessDenied, OpportunityAccessDenied, ResourceSnapshotJobAccessDenied, ResourceSnapshotJobValidationFailed, ResourceSnapshotJobConflict, EngagementValidationFailed, EngagementConflict, OpportunitySubmissionFailed, EngagementInvitationConflict, InternalError, OpportunityValidationFailed, OpportunityConflict, ResourceSnapshotAccessDenied, ResourceSnapshotValidationFailed, ResourceSnapshotConflict, ServiceQuotaExceeded, RequestThrottled, ContextNotFound, CustomerProjectContextNotPermitted, DisqualifiedLeadNotPermitted)
resource_snapshot_job_idstringUnique identifier of the resource snapshot job that was created. (pattern: <code>job-[0-9a-z]{13}</code>)
start_timestring (date-time)Task start timestamp.
task_arnstringThe Amazon Resource Name (ARN) that uniquely identifies the task. (pattern: <code>arn:.*</code>)
task_idstringUnique identifier of the task. (pattern: <code>.*task-[0-9a-z]{13}</code>)
task_statusstringStatus of the task. (IN_PROGRESS, COMPLETE, FAILED)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_engagement_by_accepting_invitation_tasksselectregionLists all in-progress, completed, or failed StartEngagementByAcceptingInvitationTask tasks that were initiated by the caller's account.

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

Lists all in-progress, completed, or failed StartEngagementByAcceptingInvitationTask tasks that were initiated by the caller's account.

SELECT
engagement_invitation_id,
message,
opportunity_id,
reason_code,
resource_snapshot_job_id,
start_time,
task_arn,
task_id,
task_status
FROM aws.partnercentral_selling.engagement_by_accepting_invitation_tasks
WHERE region = '{{ region }}' -- required
;