Skip to main content

qualifications_association_details

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

Overview

Namequalifications_association_details
TypeResource
Idaws.partnercentral_account.qualifications_association_details

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_partnersarrayThe list of all partner profile and account identifiers currently associated under the primary partner. This field is null when the status is NOT_ASSOCIATED.
catalogstringThe catalog identifier echoed from the request. (pattern: <code>[a-zA-Z0-9-]+</code>)
idstringYour unique partner identifier in the AWS Partner Network. (pattern: <code>partner-[A-Za-z0-9]{13}</code>)
primary_partnerobjectThe primary partner's profile and account identifiers. This field is null when the status is NOT_ASSOCIATED.
statusstringThe current qualifications association status. Valid values: ASSOCIATED (the partner is associated with a primary), NOT_ASSOCIATED (the partner has no active association). (ASSOCIATED, NOT_ASSOCIATED)
updated_atstring (date-time)The timestamp when the qualifications association was last updated, in ISO 8601 format. This field is null when the status is NOT_ASSOCIATED.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_qualifications_association_detailsselectregionReturns your current qualifications association status, the primary partner, and the full list of partners associated under the primary partner.

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

Returns your current qualifications association status, the primary partner, and the full list of partners associated under the primary partner.

SELECT
arn,
associated_partners,
catalog,
id,
primary_partner,
status,
updated_at
FROM aws.partnercentral_account.qualifications_association_details
WHERE region = '{{ region }}' -- required
;