engagement_by_accepting_invitation_tasks
Creates, updates, deletes, gets or lists an engagement_by_accepting_invitation_tasks resource.
Overview
| Name | engagement_by_accepting_invitation_tasks |
| Type | Resource |
| Id | aws.partnercentral_selling.engagement_by_accepting_invitation_tasks |
Fields
The following fields are returned by SELECT queries:
- list_engagement_by_accepting_invitation_tasks
| Name | Datatype | Description |
|---|---|---|
engagement_invitation_id | string | The unique identifier of the engagement invitation that was accepted. (pattern: <code>engi-[0-9,a-z]{13}</code>) |
message | string | Detailed message describing the failure and possible recovery steps. |
opportunity_id | string | Unique identifier of opportunity that was created. (pattern: <code>O[0-9]{1,19}</code>) |
reason_code | string | A 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_id | string | Unique identifier of the resource snapshot job that was created. (pattern: <code>job-[0-9a-z]{13}</code>) |
start_time | string (date-time) | Task start timestamp. |
task_arn | string | The Amazon Resource Name (ARN) that uniquely identifies the task. (pattern: <code>arn:.*</code>) |
task_id | string | Unique identifier of the task. (pattern: <code>.*task-[0-9a-z]{13}</code>) |
task_status | string | Status of the task. (IN_PROGRESS, COMPLETE, FAILED) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_engagement_by_accepting_invitation_tasks | select | region | Lists 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_engagement_by_accepting_invitation_tasks
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
;