Skip to main content

qualifications_association_tasks

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

Overview

Namequalifications_association_tasks
TypeResource
Idaws.partnercentral_account.qualifications_association_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>)
catalogstringThe catalog identifier echoed from the request. (pattern: <code>[a-zA-Z0-9-]+</code>)
ended_atstring (date-time)The timestamp when the qualifications association 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>)
primary_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.
started_atstring (date-time)The timestamp when the qualifications association task started, in ISO 8601 format.
statusstringThe current status of the qualifications association task. Valid values: IN_PROGRESS, SUCCEEDED. (IN_PROGRESS, SUCCEEDED)
task_idstringThe 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:

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

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

SELECT examples

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
;