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:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.pipes.*;
 PipeEnrichmentParametersProperty pipeEnrichmentParametersProperty = PipeEnrichmentParametersProperty.builder()
         .httpParameters(PipeEnrichmentHttpParametersProperty.builder()
                 .headerParameters(Map.of(
                         "headerParametersKey", "headerParameters"))
                 .pathParameterValues(List.of("pathParameterValues"))
                 .queryStringParameters(Map.of(
                         "queryStringParametersKey", "queryStringParameters"))
                 .build())
         .inputTemplate("inputTemplate")
         .build();
 

See Also: