Show / Hide Table of Contents

Class NotificationRuleTargetConfig

Information about the SNS topic or AWS Chatbot client associated with a notification target.

Inheritance
object
NotificationRuleTargetConfig
Implements
INotificationRuleTargetConfig
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.CodeStarNotifications
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class NotificationRuleTargetConfig : INotificationRuleTargetConfig
Syntax (vb)
Public Class NotificationRuleTargetConfig Implements INotificationRuleTargetConfig
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.CodeStarNotifications;

            var notificationRuleTargetConfig = new NotificationRuleTargetConfig {
                TargetAddress = "targetAddress",
                TargetType = "targetType"
            };

Synopsis

Constructors

NotificationRuleTargetConfig()

Information about the SNS topic or AWS Chatbot client associated with a notification target.

Properties

TargetAddress

The Amazon Resource Name (ARN) of the Amazon SNS topic or AWS Chatbot client.

TargetType

The target type.

Constructors

NotificationRuleTargetConfig()

Information about the SNS topic or AWS Chatbot client associated with a notification target.

public NotificationRuleTargetConfig()
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.CodeStarNotifications;

            var notificationRuleTargetConfig = new NotificationRuleTargetConfig {
                TargetAddress = "targetAddress",
                TargetType = "targetType"
            };

Properties

TargetAddress

The Amazon Resource Name (ARN) of the Amazon SNS topic or AWS Chatbot client.

public string TargetAddress { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

TargetType

The target type.

public string TargetType { get; set; }
Property Value

string

Remarks

Can be an Amazon SNS topic or AWS Chatbot client.

Implements

INotificationRuleTargetConfig
Back to top Generated by DocFX