qualifications_disassociation_tasks
Creates, updates, deletes, gets or lists a qualifications_disassociation_tasks resource.
Overview
| Name | qualifications_disassociation_tasks |
| Type | Resource |
| Id | aws.partnercentral_account.qualifications_disassociation_tasks |
Fields
The following fields are returned by SELECT queries:
- get_qualifications_disassociation_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>) |
associated_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. |
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 disassociation 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>) |
started_at | string (date-time) | The timestamp when the qualifications disassociation task started, in ISO 8601 format. |
status | string | The current status of the qualifications disassociation task. Valid values: IN_PROGRESS, SUCCEEDED. (IN_PROGRESS, SUCCEEDED) |
task_id | string | The unique identifier of the qualifications disassociation task, in the format pqdtask-[a-z2-7]{13}. (pattern: <code>pqdtask-[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_disassociation_task | select | region | Retrieves the status and details of the most recent qualifications disassociation task for your partner account. Use this operation to poll the progress of a disassociation task initiated by StartQualificationsDisassociationTask. |
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_disassociation_task
Retrieves the status and details of the most recent qualifications disassociation task for your partner account. Use this operation to poll the progress of a disassociation task initiated by StartQualificationsDisassociationTask.
SELECT
arn,
associated_partner,
catalog,
ended_at,
id,
started_at,
status,
task_id
FROM aws.partnercentral_account.qualifications_disassociation_tasks
WHERE region = '{{ region }}' -- required
;