Interface SnsTargetParameters
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
SnsTargetParameters.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-17T14:41:05.425Z")
@Stability(Experimental)
public interface SnsTargetParameters
extends software.amazon.jsii.JsiiSerializable
(experimental) SNS target properties.
Example:
Queue sourceQueue;
Topic targetTopic;
SnsTarget pipeTarget = SnsTarget.Builder.create(targetTopic)
.inputTransformation(InputTransformation.fromObject(Map.of(
"SomeKey", DynamicInput.fromEventPath("$.body"))))
.build();
Pipe pipe = Pipe.Builder.create(this, "Pipe")
.source(new SqsSource(sourceQueue))
.target(pipeTarget)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forSnsTargetParametersstatic final classAn implementation forSnsTargetParameters -
Method Summary
Modifier and TypeMethodDescriptionstatic SnsTargetParameters.Builderbuilder()default IInputTransformation(experimental) The input transformation to apply to the message before sending it to the target.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getInputTransformation
(experimental) The input transformation to apply to the message before sending it to the target.Default: - none
- See Also:
-
builder
- Returns:
- a
SnsTargetParameters.BuilderofSnsTargetParameters
-