Interface ICfnNotificationChannelProps
Properties for defining a CfnNotificationChannel
.
Namespace: Amazon.CDK.AWS.DevOpsGuru
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnNotificationChannelProps
Syntax (vb)
Public Interface ICfnNotificationChannelProps
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"
}
}
};
Synopsis
Properties
Config | A |
Properties
Config
A NotificationChannelConfig
object that contains information about configured notification channels.
object Config { get; }
Property Value
System.Object