Skip to main content

qualifications_disassociation_tasks

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

Overview

Namequalifications_disassociation_tasks
TypeResource
Idaws.partnercentral_account.qualifications_disassociation_tasks

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
arnstringThe 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_partnerobjectIdentifies 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.
catalogstringThe catalog identifier echoed from the request. (pattern: <code>[a-zA-Z0-9-]+</code>)
ended_atstring (date-time)The timestamp when the qualifications disassociation task ended, in ISO 8601 format. This field is present only when the status is SUCCEEDED.
idstringYour unique partner identifier in the AWS Partner Network. (pattern: <code>partner-[A-Za-z0-9]{13}</code>)
started_atstring (date-time)The timestamp when the qualifications disassociation task started, in ISO 8601 format.
statusstringThe current status of the qualifications disassociation task. Valid values: IN_PROGRESS, SUCCEEDED. (IN_PROGRESS, SUCCEEDED)
task_idstringThe 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:

NameAccessible byRequired ParamsOptional ParamsDescription
get_qualifications_disassociation_taskselectregionRetrieves 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;