Interface HttpContext.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<HttpContext.Builder,HttpContext>
,SdkBuilder<HttpContext.Builder,HttpContext>
,SdkPojo
- Enclosing class:
- HttpContext
public static interface HttpContext.Builder extends SdkPojo, CopyableBuilder<HttpContext.Builder,HttpContext>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HttpContext.Builder
headers(Map<String,String> headers)
The header keys and values in an HTTP authorization request.HttpContext.Builder
queryString(String queryString)
The query string keys and values in an HTTP authorization request.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
headers
HttpContext.Builder headers(Map<String,String> headers)
The header keys and values in an HTTP authorization request.
- Parameters:
headers
- The header keys and values in an HTTP authorization request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
queryString
HttpContext.Builder queryString(String queryString)
The query string keys and values in an HTTP authorization request.
- Parameters:
queryString
- The query string keys and values in an HTTP authorization request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-