AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
Issuer.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
31 class Issuer
32 {
33 public:
34 AWS_LICENSEMANAGER_API Issuer() = default;
35 AWS_LICENSEMANAGER_API Issuer(Aws::Utils::Json::JsonView jsonValue);
36 AWS_LICENSEMANAGER_API Issuer& operator=(Aws::Utils::Json::JsonView jsonValue);
37 AWS_LICENSEMANAGER_API Aws::Utils::Json::JsonValue Jsonize() const;
38
39
41
44 inline const Aws::String& GetName() const { return m_name; }
45 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
46 template<typename NameT = Aws::String>
47 void SetName(NameT&& value) { m_nameHasBeenSet = true; m_name = std::forward<NameT>(value); }
48 template<typename NameT = Aws::String>
49 Issuer& WithName(NameT&& value) { SetName(std::forward<NameT>(value)); return *this;}
51
53
58 inline const Aws::String& GetSignKey() const { return m_signKey; }
59 inline bool SignKeyHasBeenSet() const { return m_signKeyHasBeenSet; }
60 template<typename SignKeyT = Aws::String>
61 void SetSignKey(SignKeyT&& value) { m_signKeyHasBeenSet = true; m_signKey = std::forward<SignKeyT>(value); }
62 template<typename SignKeyT = Aws::String>
63 Issuer& WithSignKey(SignKeyT&& value) { SetSignKey(std::forward<SignKeyT>(value)); return *this;}
65 private:
66
67 Aws::String m_name;
68 bool m_nameHasBeenSet = false;
69
70 Aws::String m_signKey;
71 bool m_signKeyHasBeenSet = false;
72 };
73
74} // namespace Model
75} // namespace LicenseManager
76} // namespace Aws
AWS_LICENSEMANAGER_API Aws::Utils::Json::JsonValue Jsonize() const
const Aws::String & GetSignKey() const
Definition Issuer.h:58
Issuer & WithName(NameT &&value)
Definition Issuer.h:49
Issuer & WithSignKey(SignKeyT &&value)
Definition Issuer.h:63
AWS_LICENSEMANAGER_API Issuer()=default
void SetSignKey(SignKeyT &&value)
Definition Issuer.h:61
AWS_LICENSEMANAGER_API Issuer(Aws::Utils::Json::JsonView jsonValue)
const Aws::String & GetName() const
Definition Issuer.h:44
AWS_LICENSEMANAGER_API Issuer & operator=(Aws::Utils::Json::JsonView jsonValue)
void SetName(NameT &&value)
Definition Issuer.h:47
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue