Uses of Class
software.amazon.awssdk.crt.http.HttpHeader
-
Packages that use HttpHeader Package Description software.amazon.awssdk.crt.auth.signing software.amazon.awssdk.crt.http software.amazon.awssdk.crt.s3 -
-
Uses of HttpHeader in software.amazon.awssdk.crt.auth.signing
Method parameters in software.amazon.awssdk.crt.auth.signing with type arguments of type HttpHeader Modifier and Type Method Description static CompletableFuture<AwsSigningResult>AwsSigner. sign(List<HttpHeader> headers, byte[] previousSignature, AwsSigningConfig config)Signs a body chunk according to the supplied signing configuration -
Uses of HttpHeader in software.amazon.awssdk.crt.http
Methods in software.amazon.awssdk.crt.http that return HttpHeader Modifier and Type Method Description HttpHeader[]HttpRequestBase. getHeadersAsArray()static HttpHeader[]HttpHeader. loadHeadersFromMarshalledHeadersBlob(ByteBuffer headersBlob)Methods in software.amazon.awssdk.crt.http that return types with arguments of type HttpHeader Modifier and Type Method Description List<HttpHeader>HttpRequestBase. getHeaders()static List<HttpHeader>HttpHeader. loadHeadersListFromMarshalledHeadersBlob(ByteBuffer headersBlob)Each header is marshalled as [4-bytes BE name length] [variable length name value] [4-bytes BE value length] [variable length value value]Methods in software.amazon.awssdk.crt.http with parameters of type HttpHeader Modifier and Type Method Description voidHttpRequestBase. addHeader(HttpHeader header)voidHttpRequestBase. addHeaders(HttpHeader[] headers)voidHttpStreamBaseResponseHandler. onResponseHeaders(HttpStreamBase stream, int responseStatusCode, int blockType, HttpHeader[] nextHeaders)Called from Native when new Http Headers have been received.voidHttpStreamResponseHandler. onResponseHeaders(HttpStream stream, int responseStatusCode, int blockType, HttpHeader[] nextHeaders)Called from Native when new Http Headers have been received.Method parameters in software.amazon.awssdk.crt.http with type arguments of type HttpHeader Modifier and Type Method Description static byte[]HttpHeader. marshalHeadersForJni(List<HttpHeader> headers)Lists of headers are marshalled as follows: each string field is: [4-bytes BE] [variable length bytes specified by the previous field]Constructors in software.amazon.awssdk.crt.http with parameters of type HttpHeader Constructor Description Http2Request(HttpHeader[] headers, HttpRequestBodyStream bodyStream)An empty HTTP/2 Request with headers and body stream.HttpRequest(String method, String encodedPath, HttpHeader[] headers, HttpRequestBodyStream bodyStream) -
Uses of HttpHeader in software.amazon.awssdk.crt.s3
Methods in software.amazon.awssdk.crt.s3 that return HttpHeader Modifier and Type Method Description HttpHeader[]S3FinishedResponseContext. getErrorHeaders()In the case of a failed HTTP response, get the headers of the response.Methods in software.amazon.awssdk.crt.s3 with parameters of type HttpHeader Modifier and Type Method Description default voidS3MetaRequestResponseHandler. onResponseHeaders(int statusCode, HttpHeader[] headers)Invoked to provide response headers received during the execution of the meta request.
-