interface CfnLaunchNotificationConstraintMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ServiceCatalog.CfnLaunchNotificationConstraintMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsservicecatalog#CfnLaunchNotificationConstraintMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.servicecatalog.CfnLaunchNotificationConstraintMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_servicecatalog.CfnLaunchNotificationConstraintMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_servicecatalog » 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 { aws_servicecatalog as servicecatalog } from '@aws-cdk/cfn-property-mixins';
const cfnLaunchNotificationConstraintMixinProps: servicecatalog.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