interface CfnPortfolioShareMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ServiceCatalog.Mixins.CfnPortfolioShareMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsservicecatalog/mixins#CfnPortfolioShareMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.servicecatalog.mixins.CfnPortfolioShareMixinProps |
Python | aws_cdk.mixins_preview.aws_servicecatalog.mixins.CfnPortfolioShareMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_servicecatalog » mixins » CfnPortfolioShareMixinProps |
Properties for CfnPortfolioSharePropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as servicecatalog_mixins } from '@aws-cdk/mixins-preview/aws-servicecatalog';
const cfnPortfolioShareMixinProps: servicecatalog_mixins.CfnPortfolioShareMixinProps = {
acceptLanguage: 'acceptLanguage',
accountId: 'accountId',
portfolioId: 'portfolioId',
shareTagOptions: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| accept | string | The language code. |
| account | string | The AWS account ID. |
| portfolio | string | The portfolio identifier. |
| share | boolean | IResolvable | Indicates whether TagOptions sharing is enabled or disabled for the portfolio share. |
acceptLanguage?
Type:
string
(optional)
The language code.
jp- Japanesezh- Chinese
accountId?
Type:
string
(optional)
The AWS account ID.
For example, 123456789012 .
portfolioId?
Type:
string
(optional)
The portfolio identifier.
shareTagOptions?
Type:
boolean | IResolvable
(optional)
Indicates whether TagOptions sharing is enabled or disabled for the portfolio share.

.NET
Go
Java
Python
TypeScript