Interface PipeTargetHttpParameters.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PipeTargetHttpParameters.Builder,PipeTargetHttpParameters>,SdkBuilder<PipeTargetHttpParameters.Builder,PipeTargetHttpParameters>,SdkPojo
- Enclosing class:
- PipeTargetHttpParameters
public static interface PipeTargetHttpParameters.Builder extends SdkPojo, CopyableBuilder<PipeTargetHttpParameters.Builder,PipeTargetHttpParameters>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PipeTargetHttpParameters.BuilderheaderParameters(Map<String,String> headerParameters)The headers that need to be sent as part of request invoking the API Gateway REST API or EventBridge ApiDestination.PipeTargetHttpParameters.BuilderpathParameterValues(String... pathParameterValues)The path parameter values to be used to populate API Gateway REST API or EventBridge ApiDestination path wildcards ("*").PipeTargetHttpParameters.BuilderpathParameterValues(Collection<String> pathParameterValues)The path parameter values to be used to populate API Gateway REST API or EventBridge ApiDestination path wildcards ("*").PipeTargetHttpParameters.BuilderqueryStringParameters(Map<String,String> queryStringParameters)The query string keys/values that need to be sent as part of request invoking the API Gateway REST API or EventBridge ApiDestination.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
headerParameters
PipeTargetHttpParameters.Builder headerParameters(Map<String,String> headerParameters)
The headers that need to be sent as part of request invoking the API Gateway REST API or EventBridge ApiDestination.
- Parameters:
headerParameters- The headers that need to be sent as part of request invoking the API Gateway REST API or EventBridge ApiDestination.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
pathParameterValues
PipeTargetHttpParameters.Builder pathParameterValues(Collection<String> pathParameterValues)
The path parameter values to be used to populate API Gateway REST API or EventBridge ApiDestination path wildcards ("*").
- Parameters:
pathParameterValues- The path parameter values to be used to populate API Gateway REST API or EventBridge ApiDestination path wildcards ("*").- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
pathParameterValues
PipeTargetHttpParameters.Builder pathParameterValues(String... pathParameterValues)
The path parameter values to be used to populate API Gateway REST API or EventBridge ApiDestination path wildcards ("*").
- Parameters:
pathParameterValues- The path parameter values to be used to populate API Gateway REST API or EventBridge ApiDestination path wildcards ("*").- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
queryStringParameters
PipeTargetHttpParameters.Builder queryStringParameters(Map<String,String> queryStringParameters)
The query string keys/values that need to be sent as part of request invoking the API Gateway REST API or EventBridge ApiDestination.
- Parameters:
queryStringParameters- The query string keys/values that need to be sent as part of request invoking the API Gateway REST API or EventBridge ApiDestination.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-