interface CfnLaunchNotificationConstraintProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Servicecatalog.CfnLaunchNotificationConstraintProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsservicecatalog#CfnLaunchNotificationConstraintProps |
Java | software.amazon.awscdk.services.servicecatalog.CfnLaunchNotificationConstraintProps |
Python | aws_cdk.aws_servicecatalog.CfnLaunchNotificationConstraintProps |
TypeScript | aws-cdk-lib » 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 { aws_servicecatalog as servicecatalog } from 'aws-cdk-lib';
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
Go
Java
Python
TypeScript