PortfolioProductAssociationReference

class aws_cdk.aws_servicecatalog.PortfolioProductAssociationReference(*, portfolio_id, product_id)

Bases: object

A 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 import aws_servicecatalog as servicecatalog

portfolio_product_association_reference = 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.