Interface Http.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Http.Builder,Http>,SdkBuilder<Http.Builder,Http>,SdkPojo
- Enclosing class:
- Http
@Mutable @NotThreadSafe public static interface Http.Builder extends SdkPojo, CopyableBuilder<Http.Builder,Http>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Http.BuilderclientIp(String clientIp)The IP address of the requestor.Http.BuilderhttpMethod(String httpMethod)The request method.Http.BuilderhttpStatus(Integer httpStatus)The response status.Http.BuilderhttpURL(String httpURL)The request URL.Http.BuilderuserAgent(String userAgent)The request's user agent string.-
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
-
httpURL
Http.Builder httpURL(String httpURL)
The request URL.
- Parameters:
httpURL- The request URL.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
httpStatus
Http.Builder httpStatus(Integer httpStatus)
The response status.
- Parameters:
httpStatus- The response status.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
httpMethod
Http.Builder httpMethod(String httpMethod)
The request method.
- Parameters:
httpMethod- The request method.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
userAgent
Http.Builder userAgent(String userAgent)
The request's user agent string.
- Parameters:
userAgent- The request's user agent string.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
clientIp
Http.Builder clientIp(String clientIp)
The IP address of the requestor.
- Parameters:
clientIp- The IP address of the requestor.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-