aws-crt-cpp
C++ wrapper around the aws-c-* libraries. Provides Cross-Platform Transport Protocols and SSL/TLS implementations for C++.
|
#include <Signing.h>
Public Member Functions | |
IHttpRequestSigner ()=default | |
IHttpRequestSigner (const IHttpRequestSigner &)=delete | |
IHttpRequestSigner (IHttpRequestSigner &&)=delete | |
IHttpRequestSigner & | operator= (const IHttpRequestSigner &)=delete |
IHttpRequestSigner & | operator= (IHttpRequestSigner &&)=delete |
virtual | ~IHttpRequestSigner ()=default |
virtual bool | SignRequest (const std::shared_ptr< Aws::Crt::Http::HttpRequest > &request, const ISigningConfig &config, const OnHttpRequestSigningComplete &completionCallback)=0 |
virtual bool | IsValid () const =0 |
Abstract base for all http request signers. Asynchronous interface. Intended to be a tight wrapper around aws-c-* signer implementations.
|
default |
|
delete |
|
delete |
|
virtualdefault |
Implemented in Aws::Crt::Auth::Sigv4HttpRequestSigner.
|
delete |
|
delete |
|
pure virtual |
Signs an http request based on the signing implementation and supplied configuration
request | http request to sign |
config | base signing configuration. Actual type should match the configuration expected by the signer implementation |
completionCallback | completion function to invoke when signing has completed or failed |
Implemented in Aws::Crt::Auth::Sigv4HttpRequestSigner.