AWS SDK for C++

AWS SDK for C++ Version 1.11.754

Loading...
Searching...
No Matches
IssuerDetails.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/license-manager/LicenseManager_EXPORTS.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace LicenseManager {
20namespace Model {
21
29 public:
30 AWS_LICENSEMANAGER_API IssuerDetails() = default;
31 AWS_LICENSEMANAGER_API IssuerDetails(Aws::Utils::Json::JsonView jsonValue);
32 AWS_LICENSEMANAGER_API IssuerDetails& operator=(Aws::Utils::Json::JsonView jsonValue);
33 AWS_LICENSEMANAGER_API Aws::Utils::Json::JsonValue Jsonize() const;
34
36
39 inline const Aws::String& GetName() const { return m_name; }
40 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
41 template <typename NameT = Aws::String>
42 void SetName(NameT&& value) {
43 m_nameHasBeenSet = true;
44 m_name = std::forward<NameT>(value);
45 }
46 template <typename NameT = Aws::String>
47 IssuerDetails& WithName(NameT&& value) {
48 SetName(std::forward<NameT>(value));
49 return *this;
50 }
52
54
59 inline const Aws::String& GetSignKey() const { return m_signKey; }
60 inline bool SignKeyHasBeenSet() const { return m_signKeyHasBeenSet; }
61 template <typename SignKeyT = Aws::String>
62 void SetSignKey(SignKeyT&& value) {
63 m_signKeyHasBeenSet = true;
64 m_signKey = std::forward<SignKeyT>(value);
65 }
66 template <typename SignKeyT = Aws::String>
67 IssuerDetails& WithSignKey(SignKeyT&& value) {
68 SetSignKey(std::forward<SignKeyT>(value));
69 return *this;
70 }
72
74
77 inline const Aws::String& GetKeyFingerprint() const { return m_keyFingerprint; }
78 inline bool KeyFingerprintHasBeenSet() const { return m_keyFingerprintHasBeenSet; }
79 template <typename KeyFingerprintT = Aws::String>
80 void SetKeyFingerprint(KeyFingerprintT&& value) {
81 m_keyFingerprintHasBeenSet = true;
82 m_keyFingerprint = std::forward<KeyFingerprintT>(value);
83 }
84 template <typename KeyFingerprintT = Aws::String>
85 IssuerDetails& WithKeyFingerprint(KeyFingerprintT&& value) {
86 SetKeyFingerprint(std::forward<KeyFingerprintT>(value));
87 return *this;
88 }
90 private:
91 Aws::String m_name;
92
93 Aws::String m_signKey;
94
95 Aws::String m_keyFingerprint;
96 bool m_nameHasBeenSet = false;
97 bool m_signKeyHasBeenSet = false;
98 bool m_keyFingerprintHasBeenSet = false;
99};
100
101} // namespace Model
102} // namespace LicenseManager
103} // namespace Aws
AWS_LICENSEMANAGER_API Aws::Utils::Json::JsonValue Jsonize() const
const Aws::String & GetName() const
void SetKeyFingerprint(KeyFingerprintT &&value)
IssuerDetails & WithKeyFingerprint(KeyFingerprintT &&value)
const Aws::String & GetSignKey() const
IssuerDetails & WithName(NameT &&value)
const Aws::String & GetKeyFingerprint() const
IssuerDetails & WithSignKey(SignKeyT &&value)
AWS_LICENSEMANAGER_API IssuerDetails & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_LICENSEMANAGER_API IssuerDetails(Aws::Utils::Json::JsonView jsonValue)
AWS_LICENSEMANAGER_API IssuerDetails()=default
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue