Interface CfnPipe.PipeEnrichmentParametersProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnPipe.PipeEnrichmentParametersProperty.Jsii$Proxy
Enclosing class:
CfnPipe

@Stability(Stable) public static interface CfnPipe.PipeEnrichmentParametersProperty extends software.amazon.jsii.JsiiSerializable
The parameters required to set up enrichment on your pipe.

Example:

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

See Also: