interface CfnLaunchTemplateConstraintMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ServiceCatalog.Mixins.CfnLaunchTemplateConstraintMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsservicecatalog/mixins#CfnLaunchTemplateConstraintMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.servicecatalog.mixins.CfnLaunchTemplateConstraintMixinProps |
Python | aws_cdk.mixins_preview.aws_servicecatalog.mixins.CfnLaunchTemplateConstraintMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_servicecatalog » mixins » CfnLaunchTemplateConstraintMixinProps |
Properties for CfnLaunchTemplateConstraintPropsMixin.
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 cfnLaunchTemplateConstraintMixinProps: servicecatalog_mixins.CfnLaunchTemplateConstraintMixinProps = {
acceptLanguage: 'acceptLanguage',
description: 'description',
portfolioId: 'portfolioId',
productId: 'productId',
rules: 'rules',
};
Properties
| Name | Type | Description |
|---|---|---|
| accept | string | The language code. |
| description? | string | The description of the constraint. |
| portfolio | string | The portfolio identifier. |
| product | string | The product identifier. |
| rules? | string | The constraint rules. |
acceptLanguage?
Type:
string
(optional)
The language code.
jp- Japanesezh- Chinese
description?
Type:
string
(optional)
The description of the constraint.
portfolioId?
Type:
string
(optional)
The portfolio identifier.
productId?
Type:
string
(optional)
The product identifier.
rules?
Type:
string
(optional)
The constraint rules.

.NET
Go
Java
Python
TypeScript