PortfolioProductAssociationReference
- class aws_cdk.interfaces.aws_servicecatalog.PortfolioProductAssociationReference(*, portfolio_id, product_id)
Bases:
objectA reference to a PortfolioProductAssociation resource.
- Parameters:
portfolio_id (
str) – The PortfolioId of the PortfolioProductAssociation resource.product_id (
str) – The ProductId of the PortfolioProductAssociation resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.interfaces import aws_servicecatalog as interfaces_aws_servicecatalog portfolio_product_association_reference = interfaces_aws_servicecatalog.PortfolioProductAssociationReference( portfolio_id="portfolioId", product_id="productId" )
Attributes
- portfolio_id
The PortfolioId of the PortfolioProductAssociation resource.
- product_id
The ProductId of the PortfolioProductAssociation resource.