qualifications_association_details
Creates, updates, deletes, gets or lists a qualifications_association_details resource.
Overview
| Name | qualifications_association_details |
| Type | Resource |
| Id | aws.partnercentral_account.qualifications_association_details |
Fields
The following fields are returned by SELECT queries:
- get_qualifications_association_details
| 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_partners | array | The list of all partner profile and account identifiers currently associated under the primary partner. This field is null when the status is NOT_ASSOCIATED. |
catalog | string | The catalog identifier echoed from the request. (pattern: <code>[a-zA-Z0-9-]+</code>) |
id | string | Your unique partner identifier in the AWS Partner Network. (pattern: <code>partner-[A-Za-z0-9]{13}</code>) |
primary_partner | object | The primary partner's profile and account identifiers. This field is null when the status is NOT_ASSOCIATED. |
status | string | The 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_at | string (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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_qualifications_association_details | select | region | Returns 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_qualifications_association_details
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
;