qualifications_association_tasks
Creates, updates, deletes, gets or lists a qualifications_association_tasks resource.
Overview
| Name | qualifications_association_tasks |
| Type | Resource |
| Id | aws.partnercentral_account.qualifications_association_tasks |
Fields
The following fields are returned by SELECT queries:
- get_qualifications_association_task
| Name | Datatype | Description |
|---|---|---|
arn | string | The Amazon Resource Name (ARN) that uniquely identifies your partner resource. (pattern: <code>arn:[a-z-]+:partnercentral:[a-z0-9-]+:[0-9]{12}:catalog/[A-Za-z-_]+/partner/partner-[A-Za-z0-9]{13}</code>) |
catalog | string | The catalog identifier echoed from the request. (pattern: <code>[a-zA-Z0-9-]+</code>) |
ended_at | string (date-time) | The timestamp when the qualifications association task ended, in ISO 8601 format. This field is present only when the status is SUCCEEDED. |
id | string | Your unique partner identifier in the AWS Partner Network. (pattern: <code>partner-[A-Za-z0-9]{13}</code>) |
primary_partner | object | Identifies a partner in a qualifications association group. Contains the partner's profile identifier and AWS account identifier. In requests, provide at least one of ProfileId or AccountId. In responses, both fields are populated. |
started_at | string (date-time) | The timestamp when the qualifications association task started, in ISO 8601 format. |
status | string | The current status of the qualifications association task. Valid values: IN_PROGRESS, SUCCEEDED. (IN_PROGRESS, SUCCEEDED) |
task_id | string | The unique identifier of the qualifications association task, in the format pqatask-[a-z2-7]{13}. (pattern: <code>pqatask-[A-Za-z0-9]{13}</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_qualifications_association_task | select | region | Retrieves the status and details of the most recent qualifications association task for your partner account. Use this operation to poll the progress of an association task initiated by StartQualificationsAssociationTask. |
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
- get_qualifications_association_task
Retrieves the status and details of the most recent qualifications association task for your partner account. Use this operation to poll the progress of an association task initiated by StartQualificationsAssociationTask.
SELECT
arn,
catalog,
ended_at,
id,
primary_partner,
started_at,
status,
task_id
FROM aws.partnercentral_account.qualifications_association_tasks
WHERE region = '{{ region }}' -- required
;