Interface PipeEnrichmentHttpParameters.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PipeEnrichmentHttpParameters.Builder,PipeEnrichmentHttpParameters>,SdkBuilder<PipeEnrichmentHttpParameters.Builder,PipeEnrichmentHttpParameters>,SdkPojo
- Enclosing class:
- PipeEnrichmentHttpParameters
public static interface PipeEnrichmentHttpParameters.Builder extends SdkPojo, CopyableBuilder<PipeEnrichmentHttpParameters.Builder,PipeEnrichmentHttpParameters>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PipeEnrichmentHttpParameters.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.PipeEnrichmentHttpParameters.BuilderpathParameterValues(String... pathParameterValues)The path parameter values to be used to populate API Gateway REST API or EventBridge ApiDestination path wildcards ("*").PipeEnrichmentHttpParameters.BuilderpathParameterValues(Collection<String> pathParameterValues)The path parameter values to be used to populate API Gateway REST API or EventBridge ApiDestination path wildcards ("*").PipeEnrichmentHttpParameters.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
PipeEnrichmentHttpParameters.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
PipeEnrichmentHttpParameters.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
PipeEnrichmentHttpParameters.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
PipeEnrichmentHttpParameters.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.
-
-