Show / Hide Table of Contents

Class NotificationRuleTargetConfig

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

Inheritance
System.Object
NotificationRuleTargetConfig
Implements
INotificationRuleTargetConfig
Namespace: Amazon.CDK.AWS.CodeStarNotifications
Assembly: Amazon.CDK.AWS.CodeStarNotifications.dll
Syntax (csharp)
public class NotificationRuleTargetConfig : Object, INotificationRuleTargetConfig
Syntax (vb)
Public Class NotificationRuleTargetConfig
    Inherits Object
    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()

Properties

TargetAddress

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

TargetType

The target type.

Constructors

NotificationRuleTargetConfig()

public NotificationRuleTargetConfig()

Properties

TargetAddress

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

public string TargetAddress { get; set; }
Property Value

System.String

TargetType

The target type.

public string TargetType { get; set; }
Property Value

System.String

Remarks

Can be an Amazon SNS topic or AWS Chatbot client.

Implements

INotificationRuleTargetConfig
Back to top Generated by DocFX