interface CfnPortfolioShareMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ServiceCatalog.CfnPortfolioShareMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsservicecatalog#CfnPortfolioShareMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.servicecatalog.CfnPortfolioShareMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_servicecatalog.CfnPortfolioShareMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_servicecatalog » 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 { aws_servicecatalog as servicecatalog } from '@aws-cdk/cfn-property-mixins';
const cfnPortfolioShareMixinProps: servicecatalog.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