PortfolioPrincipalAssociationReference

class aws_cdk.interfaces.aws_servicecatalog.PortfolioPrincipalAssociationReference(*, portfolio_id, principal_arn)

Bases: object

A reference to a PortfolioPrincipalAssociation resource.

Parameters:
  • portfolio_id (str) – The PortfolioId of the PortfolioPrincipalAssociation resource.

  • principal_arn (str) – The PrincipalARN of the PortfolioPrincipalAssociation 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_principal_association_reference = interfaces_aws_servicecatalog.PortfolioPrincipalAssociationReference(
    portfolio_id="portfolioId",
    principal_arn="principalArn"
)

Attributes

portfolio_id

The PortfolioId of the PortfolioPrincipalAssociation resource.

principal_arn

The PrincipalARN of the PortfolioPrincipalAssociation resource.