Interface SourceParameters

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
SourceParameters.Jsii$Proxy

@Generated(value="jsii-pacmak/1.104.0 (build e79254c)", date="2024-10-31T19:13:08.136Z") @Stability(Experimental) public interface SourceParameters extends software.amazon.jsii.JsiiSerializable
(experimental) Source properties.

Example:

 Queue sourceQueue;
 Queue targetQueue;
 InputTransformation targetInputTransformation = InputTransformation.fromEventPath("$.body.payload");
 Pipe pipe = Pipe.Builder.create(this, "Pipe")
         .source(new SqsSource(sourceQueue))
         .target(new SqsTarget(targetQueue, Map.of(
                 "inputTransformation", targetInputTransformation)))
         .build();
 

See Also: