AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
SigningConfigurationOverrides.h
1
6#pragma once
7#include <aws/signer/Signer_EXPORTS.h>
8#include <aws/signer/model/EncryptionAlgorithm.h>
9#include <aws/signer/model/HashAlgorithm.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Json
17{
18 class JsonValue;
19 class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace signer
23{
24namespace Model
25{
26
34 {
35 public:
39 AWS_SIGNER_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
47 inline const EncryptionAlgorithm& GetEncryptionAlgorithm() const{ return m_encryptionAlgorithm; }
48 inline bool EncryptionAlgorithmHasBeenSet() const { return m_encryptionAlgorithmHasBeenSet; }
49 inline void SetEncryptionAlgorithm(const EncryptionAlgorithm& value) { m_encryptionAlgorithmHasBeenSet = true; m_encryptionAlgorithm = value; }
50 inline void SetEncryptionAlgorithm(EncryptionAlgorithm&& value) { m_encryptionAlgorithmHasBeenSet = true; m_encryptionAlgorithm = std::move(value); }
54
56
60 inline const HashAlgorithm& GetHashAlgorithm() const{ return m_hashAlgorithm; }
61 inline bool HashAlgorithmHasBeenSet() const { return m_hashAlgorithmHasBeenSet; }
62 inline void SetHashAlgorithm(const HashAlgorithm& value) { m_hashAlgorithmHasBeenSet = true; m_hashAlgorithm = value; }
63 inline void SetHashAlgorithm(HashAlgorithm&& value) { m_hashAlgorithmHasBeenSet = true; m_hashAlgorithm = std::move(value); }
65 inline SigningConfigurationOverrides& WithHashAlgorithm(HashAlgorithm&& value) { SetHashAlgorithm(std::move(value)); return *this;}
67 private:
68
69 EncryptionAlgorithm m_encryptionAlgorithm;
70 bool m_encryptionAlgorithmHasBeenSet = false;
71
72 HashAlgorithm m_hashAlgorithm;
73 bool m_hashAlgorithmHasBeenSet = false;
74 };
75
76} // namespace Model
77} // namespace signer
78} // namespace Aws
SigningConfigurationOverrides & WithEncryptionAlgorithm(EncryptionAlgorithm &&value)
AWS_SIGNER_API Aws::Utils::Json::JsonValue Jsonize() const
SigningConfigurationOverrides & WithEncryptionAlgorithm(const EncryptionAlgorithm &value)
SigningConfigurationOverrides & WithHashAlgorithm(const HashAlgorithm &value)
void SetEncryptionAlgorithm(const EncryptionAlgorithm &value)
AWS_SIGNER_API SigningConfigurationOverrides & operator=(Aws::Utils::Json::JsonView jsonValue)
SigningConfigurationOverrides & WithHashAlgorithm(HashAlgorithm &&value)
AWS_SIGNER_API SigningConfigurationOverrides(Aws::Utils::Json::JsonView jsonValue)
Aws::Utils::Json::JsonValue JsonValue