Class SnsEventSource
java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.lambda.eventsources.SnsEventSource
- All Implemented Interfaces:
IEventSource,software.amazon.jsii.JsiiSerializable
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-24T13:34:41.376Z")
@Stability(Stable)
public class SnsEventSource
extends software.amazon.jsii.JsiiObject
implements IEventSource
Use an Amazon SNS topic as an event source for AWS Lambda.
Example:
import software.amazon.awscdk.services.sns.*;
import software.amazon.awscdk.services.lambda.eventsources.SnsEventSource;
Topic topic;
Function fn;
Queue deadLetterQueue = new Queue(this, "deadLetterQueue");
fn.addEventSource(SnsEventSource.Builder.create(topic)
.filterPolicy(Map.of())
.deadLetterQueue(deadLetterQueue)
.build());
-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.amazon.awscdk.services.lambda.IEventSource
IEventSource.Jsii$Default, IEventSource.Jsii$Proxy -
Constructor Summary
ConstructorsModifierConstructorDescriptionSnsEventSource(ITopic topic) SnsEventSource(ITopic topic, SnsEventSourceProps props) protectedSnsEventSource(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedSnsEventSource(software.amazon.jsii.JsiiObjectRef objRef) -
Method Summary
Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Constructor Details
-
SnsEventSource
protected SnsEventSource(software.amazon.jsii.JsiiObjectRef objRef) -
SnsEventSource
protected SnsEventSource(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
SnsEventSource
@Stability(Stable) public SnsEventSource(@NotNull ITopic topic, @Nullable SnsEventSourceProps props) - Parameters:
topic- This parameter is required.props-
-
SnsEventSource
- Parameters:
topic- This parameter is required.
-
-
Method Details
-
bind
Called bylambda.addEventSourceto allow the event source to bind to this function.- Specified by:
bindin interfaceIEventSource- Parameters:
target- This parameter is required.
-
getTopic
-