interface PortfolioShareReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Servicecatalog.PortfolioShareReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsservicecatalog#PortfolioShareReference |
Java | software.amazon.awscdk.interfaces.servicecatalog.PortfolioShareReference |
Python | aws_cdk.interfaces.aws_servicecatalog.PortfolioShareReference |
TypeScript | aws-cdk-lib » interfaces » aws_servicecatalog » PortfolioShareReference |
A reference to a PortfolioShare 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_aws_servicecatalog } from 'aws-cdk-lib/interfaces';
const portfolioShareReference: interfaces_aws_servicecatalog.PortfolioShareReference = {
accountId: 'accountId',
portfolioId: 'portfolioId',
};
Properties
| Name | Type | Description |
|---|---|---|
| account | string | The AccountId of the PortfolioShare resource. |
| portfolio | string | The PortfolioId of the PortfolioShare resource. |
accountId
Type:
string
The AccountId of the PortfolioShare resource.
portfolioId
Type:
string
The PortfolioId of the PortfolioShare resource.

.NET
Go
Java
Python
TypeScript