interface PortfolioPrincipalAssociationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Servicecatalog.PortfolioPrincipalAssociationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsservicecatalog#PortfolioPrincipalAssociationReference |
Java | software.amazon.awscdk.interfaces.servicecatalog.PortfolioPrincipalAssociationReference |
Python | aws_cdk.interfaces.aws_servicecatalog.PortfolioPrincipalAssociationReference |
TypeScript | aws-cdk-lib » interfaces » aws_servicecatalog » PortfolioPrincipalAssociationReference |
A reference to a PortfolioPrincipalAssociation resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_servicecatalog as interfaces_servicecatalog } from 'aws-cdk-lib/interfaces';
const portfolioPrincipalAssociationReference: interfaces_servicecatalog.PortfolioPrincipalAssociationReference = {
portfolioId: 'portfolioId',
principalArn: 'principalArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| portfolio | string | The PortfolioId of the PortfolioPrincipalAssociation resource. |
| principal | string | The PrincipalARN of the PortfolioPrincipalAssociation resource. |
portfolioId
Type:
string
The PortfolioId of the PortfolioPrincipalAssociation resource.
principalArn
Type:
string
The PrincipalARN of the PortfolioPrincipalAssociation resource.

.NET
Go
Java
Python
TypeScript