AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GetBotAliasResult.h
1
6#pragma once
7#include <aws/lex-models/LexModelBuildingService_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/DateTime.h>
10#include <aws/lex-models/model/ConversationLogsResponse.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 LexModelBuildingService
26{
27namespace Model
28{
30 {
31 public:
32 AWS_LEXMODELBUILDINGSERVICE_API GetBotAliasResult();
35
36
38
41 inline const Aws::String& GetName() const{ return m_name; }
42 inline void SetName(const Aws::String& value) { m_name = value; }
43 inline void SetName(Aws::String&& value) { m_name = std::move(value); }
44 inline void SetName(const char* value) { m_name.assign(value); }
45 inline GetBotAliasResult& WithName(const Aws::String& value) { SetName(value); return *this;}
46 inline GetBotAliasResult& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
47 inline GetBotAliasResult& WithName(const char* value) { SetName(value); return *this;}
49
51
54 inline const Aws::String& GetDescription() const{ return m_description; }
55 inline void SetDescription(const Aws::String& value) { m_description = value; }
56 inline void SetDescription(Aws::String&& value) { m_description = std::move(value); }
57 inline void SetDescription(const char* value) { m_description.assign(value); }
58 inline GetBotAliasResult& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
59 inline GetBotAliasResult& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
60 inline GetBotAliasResult& WithDescription(const char* value) { SetDescription(value); return *this;}
62
64
67 inline const Aws::String& GetBotVersion() const{ return m_botVersion; }
68 inline void SetBotVersion(const Aws::String& value) { m_botVersion = value; }
69 inline void SetBotVersion(Aws::String&& value) { m_botVersion = std::move(value); }
70 inline void SetBotVersion(const char* value) { m_botVersion.assign(value); }
71 inline GetBotAliasResult& WithBotVersion(const Aws::String& value) { SetBotVersion(value); return *this;}
72 inline GetBotAliasResult& WithBotVersion(Aws::String&& value) { SetBotVersion(std::move(value)); return *this;}
73 inline GetBotAliasResult& WithBotVersion(const char* value) { SetBotVersion(value); return *this;}
75
77
80 inline const Aws::String& GetBotName() const{ return m_botName; }
81 inline void SetBotName(const Aws::String& value) { m_botName = value; }
82 inline void SetBotName(Aws::String&& value) { m_botName = std::move(value); }
83 inline void SetBotName(const char* value) { m_botName.assign(value); }
84 inline GetBotAliasResult& WithBotName(const Aws::String& value) { SetBotName(value); return *this;}
85 inline GetBotAliasResult& WithBotName(Aws::String&& value) { SetBotName(std::move(value)); return *this;}
86 inline GetBotAliasResult& WithBotName(const char* value) { SetBotName(value); return *this;}
88
90
94 inline const Aws::Utils::DateTime& GetLastUpdatedDate() const{ return m_lastUpdatedDate; }
95 inline void SetLastUpdatedDate(const Aws::Utils::DateTime& value) { m_lastUpdatedDate = value; }
96 inline void SetLastUpdatedDate(Aws::Utils::DateTime&& value) { m_lastUpdatedDate = std::move(value); }
98 inline GetBotAliasResult& WithLastUpdatedDate(Aws::Utils::DateTime&& value) { SetLastUpdatedDate(std::move(value)); return *this;}
100
102
105 inline const Aws::Utils::DateTime& GetCreatedDate() const{ return m_createdDate; }
106 inline void SetCreatedDate(const Aws::Utils::DateTime& value) { m_createdDate = value; }
107 inline void SetCreatedDate(Aws::Utils::DateTime&& value) { m_createdDate = std::move(value); }
108 inline GetBotAliasResult& WithCreatedDate(const Aws::Utils::DateTime& value) { SetCreatedDate(value); return *this;}
109 inline GetBotAliasResult& WithCreatedDate(Aws::Utils::DateTime&& value) { SetCreatedDate(std::move(value)); return *this;}
111
113
116 inline const Aws::String& GetChecksum() const{ return m_checksum; }
117 inline void SetChecksum(const Aws::String& value) { m_checksum = value; }
118 inline void SetChecksum(Aws::String&& value) { m_checksum = std::move(value); }
119 inline void SetChecksum(const char* value) { m_checksum.assign(value); }
120 inline GetBotAliasResult& WithChecksum(const Aws::String& value) { SetChecksum(value); return *this;}
121 inline GetBotAliasResult& WithChecksum(Aws::String&& value) { SetChecksum(std::move(value)); return *this;}
122 inline GetBotAliasResult& WithChecksum(const char* value) { SetChecksum(value); return *this;}
124
126
130 inline const ConversationLogsResponse& GetConversationLogs() const{ return m_conversationLogs; }
131 inline void SetConversationLogs(const ConversationLogsResponse& value) { m_conversationLogs = value; }
132 inline void SetConversationLogs(ConversationLogsResponse&& value) { m_conversationLogs = std::move(value); }
134 inline GetBotAliasResult& WithConversationLogs(ConversationLogsResponse&& value) { SetConversationLogs(std::move(value)); return *this;}
136
138
139 inline const Aws::String& GetRequestId() const{ return m_requestId; }
140 inline void SetRequestId(const Aws::String& value) { m_requestId = value; }
141 inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); }
142 inline void SetRequestId(const char* value) { m_requestId.assign(value); }
143 inline GetBotAliasResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;}
144 inline GetBotAliasResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;}
145 inline GetBotAliasResult& WithRequestId(const char* value) { SetRequestId(value); return *this;}
147 private:
148
149 Aws::String m_name;
150
151 Aws::String m_description;
152
153 Aws::String m_botVersion;
154
155 Aws::String m_botName;
156
157 Aws::Utils::DateTime m_lastUpdatedDate;
158
159 Aws::Utils::DateTime m_createdDate;
160
161 Aws::String m_checksum;
162
163 ConversationLogsResponse m_conversationLogs;
164
165 Aws::String m_requestId;
166 };
167
168} // namespace Model
169} // namespace LexModelBuildingService
170} // namespace Aws
GetBotAliasResult & WithName(Aws::String &&value)
const Aws::Utils::DateTime & GetLastUpdatedDate() const
GetBotAliasResult & WithBotName(const Aws::String &value)
GetBotAliasResult & WithName(const char *value)
GetBotAliasResult & WithRequestId(const Aws::String &value)
GetBotAliasResult & WithName(const Aws::String &value)
GetBotAliasResult & WithConversationLogs(const ConversationLogsResponse &value)
GetBotAliasResult & WithLastUpdatedDate(const Aws::Utils::DateTime &value)
GetBotAliasResult & WithCreatedDate(const Aws::Utils::DateTime &value)
GetBotAliasResult & WithLastUpdatedDate(Aws::Utils::DateTime &&value)
GetBotAliasResult & WithBotName(const char *value)
const Aws::Utils::DateTime & GetCreatedDate() const
const ConversationLogsResponse & GetConversationLogs() const
GetBotAliasResult & WithDescription(const Aws::String &value)
void SetLastUpdatedDate(const Aws::Utils::DateTime &value)
GetBotAliasResult & WithRequestId(const char *value)
GetBotAliasResult & WithDescription(Aws::String &&value)
AWS_LEXMODELBUILDINGSERVICE_API GetBotAliasResult()
GetBotAliasResult & WithRequestId(Aws::String &&value)
AWS_LEXMODELBUILDINGSERVICE_API GetBotAliasResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
void SetConversationLogs(ConversationLogsResponse &&value)
GetBotAliasResult & WithBotName(Aws::String &&value)
GetBotAliasResult & WithConversationLogs(ConversationLogsResponse &&value)
void SetCreatedDate(const Aws::Utils::DateTime &value)
GetBotAliasResult & WithChecksum(const Aws::String &value)
GetBotAliasResult & WithBotVersion(const Aws::String &value)
void SetLastUpdatedDate(Aws::Utils::DateTime &&value)
void SetConversationLogs(const ConversationLogsResponse &value)
GetBotAliasResult & WithBotVersion(Aws::String &&value)
AWS_LEXMODELBUILDINGSERVICE_API GetBotAliasResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
GetBotAliasResult & WithChecksum(Aws::String &&value)
GetBotAliasResult & WithDescription(const char *value)
GetBotAliasResult & WithCreatedDate(Aws::Utils::DateTime &&value)
GetBotAliasResult & WithChecksum(const char *value)
GetBotAliasResult & WithBotVersion(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue