AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
IssuerDetails.h
1
6#pragma once
7#include <aws/license-manager/LicenseManager_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Json
16{
17 class JsonValue;
18 class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace LicenseManager
22{
23namespace Model
24{
25
33 {
34 public:
35 AWS_LICENSEMANAGER_API IssuerDetails() = default;
36 AWS_LICENSEMANAGER_API IssuerDetails(Aws::Utils::Json::JsonView jsonValue);
37 AWS_LICENSEMANAGER_API IssuerDetails& operator=(Aws::Utils::Json::JsonView jsonValue);
38 AWS_LICENSEMANAGER_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
45 inline const Aws::String& GetName() const { return m_name; }
46 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
47 template<typename NameT = Aws::String>
48 void SetName(NameT&& value) { m_nameHasBeenSet = true; m_name = std::forward<NameT>(value); }
49 template<typename NameT = Aws::String>
50 IssuerDetails& WithName(NameT&& value) { SetName(std::forward<NameT>(value)); return *this;}
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) { m_signKeyHasBeenSet = true; m_signKey = std::forward<SignKeyT>(value); }
63 template<typename SignKeyT = Aws::String>
64 IssuerDetails& WithSignKey(SignKeyT&& value) { SetSignKey(std::forward<SignKeyT>(value)); return *this;}
66
68
71 inline const Aws::String& GetKeyFingerprint() const { return m_keyFingerprint; }
72 inline bool KeyFingerprintHasBeenSet() const { return m_keyFingerprintHasBeenSet; }
73 template<typename KeyFingerprintT = Aws::String>
74 void SetKeyFingerprint(KeyFingerprintT&& value) { m_keyFingerprintHasBeenSet = true; m_keyFingerprint = std::forward<KeyFingerprintT>(value); }
75 template<typename KeyFingerprintT = Aws::String>
76 IssuerDetails& WithKeyFingerprint(KeyFingerprintT&& value) { SetKeyFingerprint(std::forward<KeyFingerprintT>(value)); return *this;}
78 private:
79
80 Aws::String m_name;
81 bool m_nameHasBeenSet = false;
82
83 Aws::String m_signKey;
84 bool m_signKeyHasBeenSet = false;
85
86 Aws::String m_keyFingerprint;
87 bool m_keyFingerprintHasBeenSet = false;
88 };
89
90} // namespace Model
91} // namespace LicenseManager
92} // 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