CfnPortfolioPrincipalAssociationProps
- class aws_cdk.aws_servicecatalog.CfnPortfolioPrincipalAssociationProps(*, principal_type, accept_language=None, portfolio_id=None, principal_arn=None)
Bases:
objectProperties for defining a
CfnPortfolioPrincipalAssociation.- Parameters:
principal_type (
str) – The principal type. The supported values areIAMandIAM_PATTERN.accept_language (
Optional[str]) – The language code. -jp- Japanese -zh- Chineseportfolio_id (
Optional[str]) – The portfolio identifier.principal_arn (
Optional[str]) – The ARN of the principal ( IAM user, role, or group).
- 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_principal_association_props = servicecatalog.CfnPortfolioPrincipalAssociationProps( principal_type="principalType", # the properties below are optional accept_language="acceptLanguage", portfolio_id="portfolioId", principal_arn="principalArn" )
Attributes
- accept_language
The language code.
jp- Japanesezh- Chinese
- portfolio_id
The portfolio identifier.
- principal_arn
The ARN of the principal ( IAM user, role, or group).
- principal_type
The principal type.
The supported values are
IAMandIAM_PATTERN.