Interface CfnPipe.PipeTargetHttpParametersProperty

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

@Stability(Stable) public static interface CfnPipe.PipeTargetHttpParametersProperty extends software.amazon.jsii.JsiiSerializable
These are custom parameter to be used when the target is an API Gateway REST APIs or EventBridge ApiDestinations.

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.*;
 PipeTargetHttpParametersProperty pipeTargetHttpParametersProperty = PipeTargetHttpParametersProperty.builder()
         .headerParameters(Map.of(
                 "headerParametersKey", "headerParameters"))
         .pathParameterValues(List.of("pathParameterValues"))
         .queryStringParameters(Map.of(
                 "queryStringParametersKey", "queryStringParameters"))
         .build();
 
  • Method Details

    • getHeaderParameters

      @Stability(Stable) @Nullable default Object getHeaderParameters()
      The headers that need to be sent as part of request invoking the API Gateway REST API or EventBridge ApiDestination.
    • getPathParameterValues

      @Stability(Stable) @Nullable default List<String> getPathParameterValues()
      The path parameter values to be used to populate API Gateway REST API or EventBridge ApiDestination path wildcards ("*").
    • getQueryStringParameters

      @Stability(Stable) @Nullable default Object getQueryStringParameters()
      The query string keys/values that need to be sent as part of request invoking the API Gateway REST API or EventBridge ApiDestination.
    • builder

      @Stability(Stable) static CfnPipe.PipeTargetHttpParametersProperty.Builder builder()
      Returns:
      a CfnPipe.PipeTargetHttpParametersProperty.Builder of CfnPipe.PipeTargetHttpParametersProperty