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;
 LogGroup loggroup;
 Pipe pipe = Pipe.Builder.create(this, "Pipe")
         .source(new SqsSource(sourceQueue))
         .target(new SqsTarget(targetQueue))
         .logLevel(LogLevel.TRACE)
         .logIncludeExecutionData(List.of(IncludeExecutionData.ALL))
         .logDestinations(List.of(
             new CloudwatchDestination(loggroup)))
         .build();
 

See Also: