interface CfnLaunchTemplateConstraintProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ServiceCatalog.CfnLaunchTemplateConstraintProps |
Java | software.amazon.awscdk.services.servicecatalog.CfnLaunchTemplateConstraintProps |
Python | aws_cdk.aws_servicecatalog.CfnLaunchTemplateConstraintProps |
TypeScript | @aws-cdk/aws-servicecatalog » CfnLaunchTemplateConstraintProps |
Properties for defining a CfnLaunchTemplateConstraint.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as servicecatalog from '@aws-cdk/aws-servicecatalog';
const cfnLaunchTemplateConstraintProps: servicecatalog.CfnLaunchTemplateConstraintProps = {
portfolioId: 'portfolioId',
productId: 'productId',
rules: 'rules',
// the properties below are optional
acceptLanguage: 'acceptLanguage',
description: 'description',
};
Properties
| Name | Type | Description |
|---|---|---|
| portfolio | string | The portfolio identifier. |
| product | string | The product identifier. |
| rules | string | The constraint rules. |
| accept | string | The language code. |
| description? | string | The description of the constraint. |
portfolioId
Type:
string
The portfolio identifier.
productId
Type:
string
The product identifier.
rules
Type:
string
The constraint rules.
acceptLanguage?
Type:
string
(optional)
The language code.
jp- Japanesezh- Chinese
description?
Type:
string
(optional)
The description of the constraint.

.NET
Java
Python
TypeScript