Skip to main content

alliance_lead_contacts

Creates, updates, deletes, gets or lists an alliance_lead_contacts resource.

Overview

Namealliance_lead_contacts
TypeResource
Idaws.partnercentral_account.alliance_lead_contacts

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
alliance_lead_contactobjectThe alliance lead contact information including name, email, and business title.
arnstringThe Amazon Resource Name (ARN) of the partner account. (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 for the partner account. (pattern: <code>[a-zA-Z0-9-]+</code>)
idstringThe unique identifier of the partner account. (pattern: <code>partner-[A-Za-z0-9]{13}</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_alliance_lead_contactselectregionRetrieves the alliance lead contact information for a partner account.
put_alliance_lead_contactreplaceregion, Identifier, AllianceLeadContactCreates or updates the alliance lead contact information for a partner account.

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 alliance lead contact information for a partner account.

SELECT
alliance_lead_contact,
arn,
catalog,
id
FROM aws.partnercentral_account.alliance_lead_contacts
WHERE region = '{{ region }}' -- required
;

REPLACE examples

Creates or updates the alliance lead contact information for a partner account.

REPLACE aws.partnercentral_account.alliance_lead_contacts
SET
Catalog = '{{ Catalog }}',
Identifier = '{{ Identifier }}',
AllianceLeadContact = '{{ AllianceLeadContact }}',
EmailVerificationCode = '{{ EmailVerificationCode }}'
WHERE
region = '{{ region }}' --required
AND Identifier = '{{ Identifier }}' --required
AND AllianceLeadContact = '{{ AllianceLeadContact }}' --required
RETURNING
alliance_lead_contact,
arn,
catalog,
id;