interface PortfolioProductAssociationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Servicecatalog.PortfolioProductAssociationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsservicecatalog#PortfolioProductAssociationReference |
Java | software.amazon.awscdk.interfaces.servicecatalog.PortfolioProductAssociationReference |
Python | aws_cdk.interfaces.aws_servicecatalog.PortfolioProductAssociationReference |
TypeScript | aws-cdk-lib » interfaces » aws_servicecatalog » PortfolioProductAssociationReference |
A reference to a PortfolioProductAssociation resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_servicecatalog as interfaces_aws_servicecatalog } from 'aws-cdk-lib/interfaces';
const portfolioProductAssociationReference: interfaces_aws_servicecatalog.PortfolioProductAssociationReference = {
portfolioId: 'portfolioId',
productId: 'productId',
};
Properties
| Name | Type | Description |
|---|---|---|
| portfolio | string | The PortfolioId of the PortfolioProductAssociation resource. |
| product | string | The ProductId of the PortfolioProductAssociation resource. |
portfolioId
Type:
string
The PortfolioId of the PortfolioProductAssociation resource.
productId
Type:
string
The ProductId of the PortfolioProductAssociation resource.

.NET
Go
Java
Python
TypeScript