Show / Hide Table of Contents

Class CfnNotificationChannelProps

Properties for defining a CfnNotificationChannel.

Inheritance
object
CfnNotificationChannelProps
Implements
ICfnNotificationChannelProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.DevOpsGuru
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnNotificationChannelProps : ICfnNotificationChannelProps
Syntax (vb)
Public Class CfnNotificationChannelProps Implements ICfnNotificationChannelProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devopsguru-notificationchannel.html

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 CfnNotificationChannel.

Properties

Config

A NotificationChannelConfig object that contains information about configured notification channels.

Constructors

CfnNotificationChannelProps()

Properties for defining a CfnNotificationChannel.

public CfnNotificationChannelProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devopsguru-notificationchannel.html

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; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devopsguru-notificationchannel.html#cfn-devopsguru-notificationchannel-config

Implements

ICfnNotificationChannelProps
Back to top Generated by DocFX