Interface NotificationRuleTargetConfig
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
NotificationRuleTargetConfig.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:29:55.924Z")
@Stability(Stable)
public interface NotificationRuleTargetConfig
extends software.amazon.jsii.JsiiSerializable
Information about the SNS topic or AWS Chatbot client associated with a notification target.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.codestarnotifications.*; NotificationRuleTargetConfig notificationRuleTargetConfig = NotificationRuleTargetConfig.builder() .targetAddress("targetAddress") .targetType("targetType") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forNotificationRuleTargetConfig
static final class
An implementation forNotificationRuleTargetConfig
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The Amazon Resource Name (ARN) of the Amazon SNS topic or AWS Chatbot client.The target type.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getTargetAddress
The Amazon Resource Name (ARN) of the Amazon SNS topic or AWS Chatbot client. -
getTargetType
The target type.Can be an Amazon SNS topic or AWS Chatbot client.
-
builder
-