Class SnsPublish
java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.scheduler.targets.alpha.ScheduleTargetBase
software.amazon.awscdk.services.scheduler.targets.alpha.SnsPublish
- All Implemented Interfaces:
IScheduleTarget
,software.amazon.jsii.JsiiSerializable
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:24:11.993Z")
@Stability(Experimental)
public class SnsPublish
extends ScheduleTargetBase
implements IScheduleTarget
(experimental) Use an Amazon SNS topic as a target for AWS EventBridge Scheduler.
Example:
import software.amazon.awscdk.services.sns.*; Topic topic = new Topic(this, "Topic"); Map<String, String> payload = Map.of( "message", "Hello scheduler!"); SnsPublish target = SnsPublish.Builder.create(topic) .input(ScheduleTargetInput.fromObject(payload)) .build(); Schedule.Builder.create(this, "Schedule") .schedule(ScheduleExpression.rate(Duration.hours(1))) .target(target) .build();
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic final class
(experimental) A fluent builder forSnsPublish
.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
Nested classes/interfaces inherited from interface software.amazon.awscdk.services.scheduler.alpha.IScheduleTarget
IScheduleTarget.Jsii$Default, IScheduleTarget.Jsii$Proxy
-
Constructor Summary
ModifierConstructorDescriptionSnsPublish
(ITopic topic) SnsPublish
(ITopic topic, ScheduleTargetBaseProps props) protected
SnsPublish
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
SnsPublish
(software.amazon.jsii.JsiiObjectRef objRef) -
Method Summary
Methods inherited from class software.amazon.awscdk.services.scheduler.targets.alpha.ScheduleTargetBase
bind, bindBaseTargetConfig, getTargetArn
Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface software.amazon.awscdk.services.scheduler.alpha.IScheduleTarget
bind
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Constructor Details
-
SnsPublish
protected SnsPublish(software.amazon.jsii.JsiiObjectRef objRef) -
SnsPublish
protected SnsPublish(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
SnsPublish
@Stability(Experimental) public SnsPublish(@NotNull ITopic topic, @Nullable ScheduleTargetBaseProps props) - Parameters:
topic
- This parameter is required.props
-
-
SnsPublish
- Parameters:
topic
- This parameter is required.
-
-
Method Details
-
addTargetActionToRole
- Specified by:
addTargetActionToRole
in classScheduleTargetBase
- Parameters:
role
- This parameter is required.
-