|
AWS IoT Device SDK C++ v2
1.40.2
AWS IoT Device SDK C++ v2
|
#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 |
|
pure virtual |
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.