Interface ChecksumCalculatingAsyncRequestBody.Builder
-
- All Superinterfaces:
software.amazon.awssdk.utils.builder.Buildable,software.amazon.awssdk.utils.builder.SdkBuilder<ChecksumCalculatingAsyncRequestBody.Builder,ChecksumCalculatingAsyncRequestBody>
- Enclosing class:
- ChecksumCalculatingAsyncRequestBody
public static interface ChecksumCalculatingAsyncRequestBody.Builder extends software.amazon.awssdk.utils.builder.SdkBuilder<ChecksumCalculatingAsyncRequestBody.Builder,ChecksumCalculatingAsyncRequestBody>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ChecksumCalculatingAsyncRequestBody.Builderalgorithm(Algorithm algorithm)Sets the checksum algorithm.ChecksumCalculatingAsyncRequestBody.BuilderasyncRequestBody(AsyncRequestBody asyncRequestBody)Sets the AsyncRequestBody that will be wrapped.ChecksumCalculatingAsyncRequestBody.BuildertrailerHeader(String trailerHeader)Sets the Trailer header where computed SdkChecksum will be updated.
-
-
-
Method Detail
-
asyncRequestBody
ChecksumCalculatingAsyncRequestBody.Builder asyncRequestBody(AsyncRequestBody asyncRequestBody)
Sets the AsyncRequestBody that will be wrapped.- Parameters:
asyncRequestBody- AsyncRequestBody.- Returns:
- This builder for method chaining.
-
algorithm
ChecksumCalculatingAsyncRequestBody.Builder algorithm(Algorithm algorithm)
Sets the checksum algorithm.- Parameters:
algorithm- algorithm that is used to compute the checksum.- Returns:
- This builder for method chaining.
-
trailerHeader
ChecksumCalculatingAsyncRequestBody.Builder trailerHeader(String trailerHeader)
Sets the Trailer header where computed SdkChecksum will be updated.- Parameters:
trailerHeader- Trailer header name which will be appended at the end of the string.- Returns:
- This builder for method chaining.
-
-