Skip to main content

engagement_resource_associations

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

Overview

Nameengagement_resource_associations
TypeResource
Idaws.partnercentral_selling.engagement_resource_associations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
catalogstringIndicates the environment in which the resource and engagement exist. (pattern: <code>[a-zA-Z]+</code>)
created_bystringThe AWS account ID of the entity that owns the resource. Identifies the account responsible for or having primary control over the resource. (pattern: <code>([0-9]{12}|\w{1,12})</code>)
engagement_idstringA unique identifier for the engagement associated with the resource. (pattern: <code>eng-[0-9a-z]{14}</code>)
resource_idstringA unique identifier for the specific resource. Varies depending on the resource type. (pattern: <code>O[0-9]{1,19}</code>)
resource_typestringCategorizes the type of resource associated with the engagement. (Opportunity)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_engagement_resource_associationsselectregionLists the associations between resources and engagements where the caller is a member and has at least one snapshot in the engagement.

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

Lists the associations between resources and engagements where the caller is a member and has at least one snapshot in the engagement.

SELECT
catalog,
created_by,
engagement_id,
resource_id,
resource_type
FROM aws.partnercentral_selling.engagement_resource_associations
WHERE region = '{{ region }}' -- required
;