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

.NET
Go
Java
Python
TypeScript