interface CfnNotificationChannelMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DevOpsGuru.CfnNotificationChannelMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdevopsguru#CfnNotificationChannelMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.devopsguru.CfnNotificationChannelMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_devopsguru.CfnNotificationChannelMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_devopsguru » CfnNotificationChannelMixinProps |
Properties for CfnNotificationChannelPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_devopsguru as devopsguru } from '@aws-cdk/cfn-property-mixins';
const cfnNotificationChannelMixinProps: devopsguru.CfnNotificationChannelMixinProps = {
config: {
filters: {
messageTypes: ['messageTypes'],
severities: ['severities'],
},
sns: {
topicArn: 'topicArn',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| config? | IResolvable | Notification | A NotificationChannelConfig object that contains information about configured notification channels. |
config?
Type:
IResolvable | Notification
(optional)
A NotificationChannelConfig object that contains information about configured notification channels.

.NET
Go
Java
Python
TypeScript