Skip to main content

engagement_members

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

Overview

Nameengagement_members
TypeResource
Idaws.partnercentral_selling.engagement_members

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
account_idstringThis is the unique identifier for the AWS account associated with the member organization. It's used for AWS-related operations and identity verification. (pattern: <code>([0-9]{12}|\w{1,12})</code>)
company_namestringThe official name of the member's company or organization. (pattern: <code>(?s).{1,120}</code>)
website_urlstringThe URL of the member company's website. This offers a way to find more information about the member organization and serves as an additional identifier.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_engagement_membersselectregionRetrieves the details of member partners in an Engagement. This operation can only be invoked by members of the Engagement. The ListEngagementMembers operation allows you to fetch information about the members of a specific Engagement. This action is restricted to members of the Engagement being queried.

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 details of member partners in an Engagement. This operation can only be invoked by members of the Engagement. The ListEngagementMembers operation allows you to fetch information about the members of a specific Engagement. This action is restricted to members of the Engagement being queried.

SELECT
account_id,
company_name,
website_url
FROM aws.partnercentral_selling.engagement_members
WHERE region = '{{ region }}' -- required
;