interface PartnershipReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.B2BI.PartnershipReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsb2bi#PartnershipReference |
Java | software.amazon.awscdk.interfaces.b2bi.PartnershipReference |
Python | aws_cdk.interfaces.aws_b2bi.PartnershipReference |
TypeScript | aws-cdk-lib » interfaces » aws_b2bi » PartnershipReference |
A reference to a Partnership resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_b2bi as interfaces_aws_b2bi } from 'aws-cdk-lib/interfaces';
const partnershipReference: interfaces_aws_b2bi.PartnershipReference = {
partnershipArn: 'partnershipArn',
partnershipId: 'partnershipId',
};
Properties
| Name | Type | Description |
|---|---|---|
| partnership | string | The ARN of the Partnership resource. |
| partnership | string | The PartnershipId of the Partnership resource. |
partnershipArn
Type:
string
The ARN of the Partnership resource.
partnershipId
Type:
string
The PartnershipId of the Partnership resource.

.NET
Go
Java
Python
TypeScript