Class CfnNotificationChannelProps
Properties for defining a CfnNotificationChannel.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.DevOpsGuru
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnNotificationChannelProps : ICfnNotificationChannelPropsSyntax (vb)
Public Class CfnNotificationChannelProps Implements ICfnNotificationChannelPropsRemarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.DevOpsGuru;
             var cfnNotificationChannelProps = new CfnNotificationChannelProps {
                 Config = new NotificationChannelConfigProperty {
                     Filters = new NotificationFilterConfigProperty {
                         MessageTypes = new [] { "messageTypes" },
                         Severities = new [] { "severities" }
                     },
                     Sns = new SnsChannelConfigProperty {
                         TopicArn = "topicArn"
                     }
                 }
             };Synopsis
Constructors
| CfnNotificationChannelProps() | Properties for defining a  | 
Properties
| Config | A  | 
Constructors
CfnNotificationChannelProps()
Properties for defining a CfnNotificationChannel.
public CfnNotificationChannelProps()Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.DevOpsGuru;
             var cfnNotificationChannelProps = new CfnNotificationChannelProps {
                 Config = new NotificationChannelConfigProperty {
                     Filters = new NotificationFilterConfigProperty {
                         MessageTypes = new [] { "messageTypes" },
                         Severities = new [] { "severities" }
                     },
                     Sns = new SnsChannelConfigProperty {
                         TopicArn = "topicArn"
                     }
                 }
             };Properties
Config
A NotificationChannelConfig object that contains information about configured notification channels.
public object Config { get; set; }