Interface AsyncRequestBodySigner
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface @Deprecated public interface AsyncRequestBodySigner
Deprecated.Replaced bysoftware.amazon.awssdk.http.auth.spi.signer.HttpSignerin 'http-auth-spi'.Interface for the signer used for signing the async requests.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description AsyncRequestBodysignAsyncRequestBody(SdkHttpFullRequest request, AsyncRequestBody asyncRequestBody, ExecutionAttributes executionAttributes)Deprecated.Method that takes in an signed request and async request body provider, and returns a transformed version the request body provider.
-
-
-
Method Detail
-
signAsyncRequestBody
AsyncRequestBody signAsyncRequestBody(SdkHttpFullRequest request, AsyncRequestBody asyncRequestBody, ExecutionAttributes executionAttributes)
Deprecated.Method that takes in an signed request and async request body provider, and returns a transformed version the request body provider.- Parameters:
request- The signed request (with Authentication header)asyncRequestBody- Data publisher of the request bodyexecutionAttributes- Contains the attributes required for signing the request- Returns:
- The transformed request body provider (with singing operator)
-
-