interface CfnLaunchNotificationConstraintProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ServiceCatalog.CfnLaunchNotificationConstraintProps |
Java | software.amazon.awscdk.services.servicecatalog.CfnLaunchNotificationConstraintProps |
Python | aws_cdk.aws_servicecatalog.CfnLaunchNotificationConstraintProps |
TypeScript | @aws-cdk/aws-servicecatalog » CfnLaunchNotificationConstraintProps |
Properties for defining a CfnLaunchNotificationConstraint.
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 cfnLaunchNotificationConstraintProps: servicecatalog.CfnLaunchNotificationConstraintProps = {
notificationArns: ['notificationArns'],
portfolioId: 'portfolioId',
productId: 'productId',
// the properties below are optional
acceptLanguage: 'acceptLanguage',
description: 'description',
};
Properties
| Name | Type | Description |
|---|---|---|
| notification | string[] | The notification ARNs. |
| portfolio | string | The portfolio identifier. |
| product | string | The product identifier. |
| accept | string | The language code. |
| description? | string | The description of the constraint. |
notificationArns
Type:
string[]
The notification ARNs.
portfolioId
Type:
string
The portfolio identifier.
productId
Type:
string
The product identifier.
acceptLanguage?
Type:
string
(optional)
The language code.
jp- Japanesezh- Chinese
description?
Type:
string
(optional)
The description of the constraint.

.NET
Java
Python
TypeScript