CfnPortfolioProductAssociationProps
- class aws_cdk.aws_servicecatalog.CfnPortfolioProductAssociationProps(*, portfolio_id, product_id, accept_language=None, source_portfolio_id=None)
Bases:
object
Properties for defining a
CfnPortfolioProductAssociation
.- Parameters:
portfolio_id (
str
) – The portfolio identifier.product_id (
str
) – The product identifier.accept_language (
Optional
[str
]) – The language code. -jp
- Japanese -zh
- Chinesesource_portfolio_id (
Optional
[str
]) – The identifier of the source portfolio.
- See:
- 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 cfn_portfolio_product_association_props = servicecatalog.CfnPortfolioProductAssociationProps( portfolio_id="portfolioId", product_id="productId", # the properties below are optional accept_language="acceptLanguage", source_portfolio_id="sourcePortfolioId" )
Attributes
- accept_language
The language code.
jp
- Japanesezh
- Chinese
- portfolio_id
The portfolio identifier.
- product_id
The product identifier.
- source_portfolio_id
The identifier of the source portfolio.