interface CfnNotificationChannelMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DevOpsGuru.Mixins.CfnNotificationChannelMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdevopsguru/mixins#CfnNotificationChannelMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.devopsguru.mixins.CfnNotificationChannelMixinProps |
Python | aws_cdk.mixins_preview.aws_devopsguru.mixins.CfnNotificationChannelMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_devopsguru » mixins » 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 { mixins as devopsguru_mixins } from '@aws-cdk/mixins-preview/aws-devopsguru';
const cfnNotificationChannelMixinProps: devopsguru_mixins.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