interface CfnPortfolioPrincipalAssociationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ServiceCatalog.CfnPortfolioPrincipalAssociationProps |
Java | software.amazon.awscdk.services.servicecatalog.CfnPortfolioPrincipalAssociationProps |
Python | aws_cdk.aws_servicecatalog.CfnPortfolioPrincipalAssociationProps |
TypeScript | @aws-cdk/aws-servicecatalog » CfnPortfolioPrincipalAssociationProps |
Properties for defining a CfnPortfolioPrincipalAssociation.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as servicecatalog from '@aws-cdk/aws-servicecatalog';
const cfnPortfolioPrincipalAssociationProps: servicecatalog.CfnPortfolioPrincipalAssociationProps = {
portfolioId: 'portfolioId',
principalArn: 'principalArn',
principalType: 'principalType',
// the properties below are optional
acceptLanguage: 'acceptLanguage',
};
Properties
| Name | Type | Description |
|---|---|---|
| portfolio | string | The portfolio identifier. |
| principal | string | The ARN of the principal ( IAM user, role, or group). |
| principal | string | The principal type. The supported value is IAM . |
| accept | string | The language code. |
portfolioId
Type:
string
The portfolio identifier.
principalArn
Type:
string
The ARN of the principal ( IAM user, role, or group).
principalType
Type:
string
The principal type. The supported value is IAM .
Allowed Values : IAM
acceptLanguage?
Type:
string
(optional)
The language code.
jp- Japanesezh- Chinese

.NET
Java
Python
TypeScript