AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GenerateClientCertificateResult.h
1
6#pragma once
7#include <aws/apigateway/APIGateway_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/DateTime.h>
10#include <aws/core/utils/memory/stl/AWSMap.h>
11#include <utility>
12
13namespace Aws
14{
15template<typename RESULT_TYPE>
16class AmazonWebServiceResult;
17
18namespace Utils
19{
20namespace Json
21{
22 class JsonValue;
23} // namespace Json
24} // namespace Utils
25namespace APIGateway
26{
27namespace Model
28{
37 {
38 public:
39 AWS_APIGATEWAY_API GenerateClientCertificateResult();
42
43
45
48 inline const Aws::String& GetClientCertificateId() const{ return m_clientCertificateId; }
49 inline void SetClientCertificateId(const Aws::String& value) { m_clientCertificateId = value; }
50 inline void SetClientCertificateId(Aws::String&& value) { m_clientCertificateId = std::move(value); }
51 inline void SetClientCertificateId(const char* value) { m_clientCertificateId.assign(value); }
54 inline GenerateClientCertificateResult& WithClientCertificateId(const char* value) { SetClientCertificateId(value); return *this;}
56
58
61 inline const Aws::String& GetDescription() const{ return m_description; }
62 inline void SetDescription(const Aws::String& value) { m_description = value; }
63 inline void SetDescription(Aws::String&& value) { m_description = std::move(value); }
64 inline void SetDescription(const char* value) { m_description.assign(value); }
65 inline GenerateClientCertificateResult& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
66 inline GenerateClientCertificateResult& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
67 inline GenerateClientCertificateResult& WithDescription(const char* value) { SetDescription(value); return *this;}
69
71
75 inline const Aws::String& GetPemEncodedCertificate() const{ return m_pemEncodedCertificate; }
76 inline void SetPemEncodedCertificate(const Aws::String& value) { m_pemEncodedCertificate = value; }
77 inline void SetPemEncodedCertificate(Aws::String&& value) { m_pemEncodedCertificate = std::move(value); }
78 inline void SetPemEncodedCertificate(const char* value) { m_pemEncodedCertificate.assign(value); }
83
85
88 inline const Aws::Utils::DateTime& GetCreatedDate() const{ return m_createdDate; }
89 inline void SetCreatedDate(const Aws::Utils::DateTime& value) { m_createdDate = value; }
90 inline void SetCreatedDate(Aws::Utils::DateTime&& value) { m_createdDate = std::move(value); }
92 inline GenerateClientCertificateResult& WithCreatedDate(Aws::Utils::DateTime&& value) { SetCreatedDate(std::move(value)); return *this;}
94
96
99 inline const Aws::Utils::DateTime& GetExpirationDate() const{ return m_expirationDate; }
100 inline void SetExpirationDate(const Aws::Utils::DateTime& value) { m_expirationDate = value; }
101 inline void SetExpirationDate(Aws::Utils::DateTime&& value) { m_expirationDate = std::move(value); }
105
107
111 inline const Aws::Map<Aws::String, Aws::String>& GetTags() const{ return m_tags; }
112 inline void SetTags(const Aws::Map<Aws::String, Aws::String>& value) { m_tags = value; }
113 inline void SetTags(Aws::Map<Aws::String, Aws::String>&& value) { m_tags = std::move(value); }
115 inline GenerateClientCertificateResult& WithTags(Aws::Map<Aws::String, Aws::String>&& value) { SetTags(std::move(value)); return *this;}
116 inline GenerateClientCertificateResult& AddTags(const Aws::String& key, const Aws::String& value) { m_tags.emplace(key, value); return *this; }
117 inline GenerateClientCertificateResult& AddTags(Aws::String&& key, const Aws::String& value) { m_tags.emplace(std::move(key), value); return *this; }
118 inline GenerateClientCertificateResult& AddTags(const Aws::String& key, Aws::String&& value) { m_tags.emplace(key, std::move(value)); return *this; }
119 inline GenerateClientCertificateResult& AddTags(Aws::String&& key, Aws::String&& value) { m_tags.emplace(std::move(key), std::move(value)); return *this; }
120 inline GenerateClientCertificateResult& AddTags(const char* key, Aws::String&& value) { m_tags.emplace(key, std::move(value)); return *this; }
121 inline GenerateClientCertificateResult& AddTags(Aws::String&& key, const char* value) { m_tags.emplace(std::move(key), value); return *this; }
122 inline GenerateClientCertificateResult& AddTags(const char* key, const char* value) { m_tags.emplace(key, value); return *this; }
124
126
127 inline const Aws::String& GetRequestId() const{ return m_requestId; }
128 inline void SetRequestId(const Aws::String& value) { m_requestId = value; }
129 inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); }
130 inline void SetRequestId(const char* value) { m_requestId.assign(value); }
131 inline GenerateClientCertificateResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;}
132 inline GenerateClientCertificateResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;}
133 inline GenerateClientCertificateResult& WithRequestId(const char* value) { SetRequestId(value); return *this;}
135 private:
136
137 Aws::String m_clientCertificateId;
138
139 Aws::String m_description;
140
141 Aws::String m_pemEncodedCertificate;
142
143 Aws::Utils::DateTime m_createdDate;
144
145 Aws::Utils::DateTime m_expirationDate;
146
148
149 Aws::String m_requestId;
150 };
151
152} // namespace Model
153} // namespace APIGateway
154} // namespace Aws
GenerateClientCertificateResult & WithTags(Aws::Map< Aws::String, Aws::String > &&value)
GenerateClientCertificateResult & WithDescription(const char *value)
void SetTags(Aws::Map< Aws::String, Aws::String > &&value)
GenerateClientCertificateResult & WithTags(const Aws::Map< Aws::String, Aws::String > &value)
GenerateClientCertificateResult & WithDescription(Aws::String &&value)
GenerateClientCertificateResult & AddTags(const char *key, const char *value)
GenerateClientCertificateResult & WithRequestId(const Aws::String &value)
GenerateClientCertificateResult & WithRequestId(Aws::String &&value)
void SetTags(const Aws::Map< Aws::String, Aws::String > &value)
GenerateClientCertificateResult & AddTags(Aws::String &&key, Aws::String &&value)
GenerateClientCertificateResult & WithCreatedDate(Aws::Utils::DateTime &&value)
GenerateClientCertificateResult & AddTags(Aws::String &&key, const Aws::String &value)
GenerateClientCertificateResult & WithCreatedDate(const Aws::Utils::DateTime &value)
GenerateClientCertificateResult & WithPemEncodedCertificate(Aws::String &&value)
GenerateClientCertificateResult & WithExpirationDate(const Aws::Utils::DateTime &value)
GenerateClientCertificateResult & WithDescription(const Aws::String &value)
GenerateClientCertificateResult & WithClientCertificateId(const char *value)
GenerateClientCertificateResult & WithClientCertificateId(Aws::String &&value)
GenerateClientCertificateResult & WithPemEncodedCertificate(const Aws::String &value)
GenerateClientCertificateResult & AddTags(const Aws::String &key, Aws::String &&value)
GenerateClientCertificateResult & WithExpirationDate(Aws::Utils::DateTime &&value)
GenerateClientCertificateResult & AddTags(const char *key, Aws::String &&value)
GenerateClientCertificateResult & AddTags(const Aws::String &key, const Aws::String &value)
const Aws::Map< Aws::String, Aws::String > & GetTags() const
AWS_APIGATEWAY_API GenerateClientCertificateResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
GenerateClientCertificateResult & WithRequestId(const char *value)
AWS_APIGATEWAY_API GenerateClientCertificateResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
GenerateClientCertificateResult & WithClientCertificateId(const Aws::String &value)
GenerateClientCertificateResult & AddTags(Aws::String &&key, const char *value)
GenerateClientCertificateResult & WithPemEncodedCertificate(const char *value)
std::map< K, V, std::less< K >, Aws::Allocator< std::pair< const K, V > > > Map
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue