Uses of Class
software.amazon.awssdk.core.sync.RequestBody
-
-
Uses of RequestBody in software.amazon.awssdk.core.client.handler
Methods in software.amazon.awssdk.core.client.handler that return RequestBody Modifier and Type Method Description RequestBodyClientExecutionParams. getRequestBody()Methods in software.amazon.awssdk.core.client.handler with parameters of type RequestBody Modifier and Type Method Description ClientExecutionParams<InputT,OutputT>ClientExecutionParams. withRequestBody(RequestBody requestBody) -
Uses of RequestBody in software.amazon.awssdk.core.interceptor
Methods in software.amazon.awssdk.core.interceptor that return types with arguments of type RequestBody Modifier and Type Method Description default Optional<RequestBody>ExecutionInterceptor. modifyHttpContent(Context.ModifyHttpRequest context, ExecutionAttributes executionAttributes)Optional<RequestBody>Context.AfterMarshalling. requestBody()TheRequestBodythat represents the body of an HTTP request.Optional<RequestBody>InterceptorContext. requestBody()Methods in software.amazon.awssdk.core.interceptor with parameters of type RequestBody Modifier and Type Method Description InterceptorContext.BuilderInterceptorContext.Builder. requestBody(RequestBody requestBody) -
Uses of RequestBody in software.amazon.awssdk.core.runtime.transform
Methods in software.amazon.awssdk.core.runtime.transform with parameters of type RequestBody Modifier and Type Method Description StreamingRequestMarshaller.BuilderStreamingRequestMarshaller.Builder. requestBody(RequestBody requestBody) -
Uses of RequestBody in software.amazon.awssdk.core.sync
Methods in software.amazon.awssdk.core.sync that return RequestBody Modifier and Type Method Description static RequestBodyRequestBody. empty()Creates aRequestBodywith no content.static RequestBodyRequestBody. fromByteBuffer(ByteBuffer byteBuffer)Creates aRequestBodyfrom aByteBuffer.static RequestBodyRequestBody. fromBytes(byte[] bytes)Creates aRequestBodyfrom a byte array.static RequestBodyRequestBody. fromContentProvider(ContentStreamProvider provider, long contentLength, String mimeType)Creates aRequestBodyfrom the givenContentStreamProvider.static RequestBodyRequestBody. fromContentProvider(ContentStreamProvider provider, String mimeType)Creates aRequestBodyfrom the givenContentStreamProvider.static RequestBodyRequestBody. fromFile(File file)Create aRequestBodyusing the full contents of the specified file.static RequestBodyRequestBody. fromFile(Path path)Create aRequestBodyusing the full contents of the specified file.static RequestBodyRequestBody. fromInputStream(InputStream inputStream, long contentLength)Creates aRequestBodyfrom an input stream.static RequestBodyRequestBody. fromRemainingByteBuffer(ByteBuffer byteBuffer)Creates aRequestBodyfrom the remaining readable bytes from aByteBuffer.static RequestBodyRequestBody. fromString(String contents)Creates aRequestBodyfrom a string.static RequestBodyRequestBody. fromString(String contents, Charset cs)Creates aRequestBodyfrom a string.
-