engagement_members
Creates, updates, deletes, gets or lists an engagement_members resource.
Overview
| Name | engagement_members |
| Type | Resource |
| Id | aws.partnercentral_selling.engagement_members |
Fields
The following fields are returned by SELECT queries:
- list_engagement_members
| Name | Datatype | Description |
|---|---|---|
account_id | string | This 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_name | string | The official name of the member's company or organization. (pattern: <code>(?s).{1,120}</code>) |
website_url | string | The 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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_engagement_members | select | region | 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. |
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
- list_engagement_members
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
;