AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
UpdateBotRecommendationResult.h
1
6#pragma once
7#include <aws/lexv2-models/LexModelsV2_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/lexv2-models/model/BotRecommendationStatus.h>
10#include <aws/core/utils/DateTime.h>
11#include <aws/lexv2-models/model/TranscriptSourceSetting.h>
12#include <aws/lexv2-models/model/EncryptionSetting.h>
13#include <utility>
14
15namespace Aws
16{
17template<typename RESULT_TYPE>
18class AmazonWebServiceResult;
19
20namespace Utils
21{
22namespace Json
23{
24 class JsonValue;
25} // namespace Json
26} // namespace Utils
27namespace LexModelsV2
28{
29namespace Model
30{
32 {
33 public:
34 AWS_LEXMODELSV2_API UpdateBotRecommendationResult() = default;
37
38
40
44 inline const Aws::String& GetBotId() const { return m_botId; }
45 template<typename BotIdT = Aws::String>
46 void SetBotId(BotIdT&& value) { m_botIdHasBeenSet = true; m_botId = std::forward<BotIdT>(value); }
47 template<typename BotIdT = Aws::String>
48 UpdateBotRecommendationResult& WithBotId(BotIdT&& value) { SetBotId(std::forward<BotIdT>(value)); return *this;}
50
52
56 inline const Aws::String& GetBotVersion() const { return m_botVersion; }
57 template<typename BotVersionT = Aws::String>
58 void SetBotVersion(BotVersionT&& value) { m_botVersionHasBeenSet = true; m_botVersion = std::forward<BotVersionT>(value); }
59 template<typename BotVersionT = Aws::String>
60 UpdateBotRecommendationResult& WithBotVersion(BotVersionT&& value) { SetBotVersion(std::forward<BotVersionT>(value)); return *this;}
62
64
71 inline const Aws::String& GetLocaleId() const { return m_localeId; }
72 template<typename LocaleIdT = Aws::String>
73 void SetLocaleId(LocaleIdT&& value) { m_localeIdHasBeenSet = true; m_localeId = std::forward<LocaleIdT>(value); }
74 template<typename LocaleIdT = Aws::String>
75 UpdateBotRecommendationResult& WithLocaleId(LocaleIdT&& value) { SetLocaleId(std::forward<LocaleIdT>(value)); return *this;}
77
79
83 inline BotRecommendationStatus GetBotRecommendationStatus() const { return m_botRecommendationStatus; }
84 inline void SetBotRecommendationStatus(BotRecommendationStatus value) { m_botRecommendationStatusHasBeenSet = true; m_botRecommendationStatus = value; }
87
89
92 inline const Aws::String& GetBotRecommendationId() const { return m_botRecommendationId; }
93 template<typename BotRecommendationIdT = Aws::String>
94 void SetBotRecommendationId(BotRecommendationIdT&& value) { m_botRecommendationIdHasBeenSet = true; m_botRecommendationId = std::forward<BotRecommendationIdT>(value); }
95 template<typename BotRecommendationIdT = Aws::String>
96 UpdateBotRecommendationResult& WithBotRecommendationId(BotRecommendationIdT&& value) { SetBotRecommendationId(std::forward<BotRecommendationIdT>(value)); return *this;}
98
100
103 inline const Aws::Utils::DateTime& GetCreationDateTime() const { return m_creationDateTime; }
104 template<typename CreationDateTimeT = Aws::Utils::DateTime>
105 void SetCreationDateTime(CreationDateTimeT&& value) { m_creationDateTimeHasBeenSet = true; m_creationDateTime = std::forward<CreationDateTimeT>(value); }
106 template<typename CreationDateTimeT = Aws::Utils::DateTime>
107 UpdateBotRecommendationResult& WithCreationDateTime(CreationDateTimeT&& value) { SetCreationDateTime(std::forward<CreationDateTimeT>(value)); return *this;}
109
111
115 inline const Aws::Utils::DateTime& GetLastUpdatedDateTime() const { return m_lastUpdatedDateTime; }
116 template<typename LastUpdatedDateTimeT = Aws::Utils::DateTime>
117 void SetLastUpdatedDateTime(LastUpdatedDateTimeT&& value) { m_lastUpdatedDateTimeHasBeenSet = true; m_lastUpdatedDateTime = std::forward<LastUpdatedDateTimeT>(value); }
118 template<typename LastUpdatedDateTimeT = Aws::Utils::DateTime>
119 UpdateBotRecommendationResult& WithLastUpdatedDateTime(LastUpdatedDateTimeT&& value) { SetLastUpdatedDateTime(std::forward<LastUpdatedDateTimeT>(value)); return *this;}
121
123
127 inline const TranscriptSourceSetting& GetTranscriptSourceSetting() const { return m_transcriptSourceSetting; }
128 template<typename TranscriptSourceSettingT = TranscriptSourceSetting>
129 void SetTranscriptSourceSetting(TranscriptSourceSettingT&& value) { m_transcriptSourceSettingHasBeenSet = true; m_transcriptSourceSetting = std::forward<TranscriptSourceSettingT>(value); }
130 template<typename TranscriptSourceSettingT = TranscriptSourceSetting>
131 UpdateBotRecommendationResult& WithTranscriptSourceSetting(TranscriptSourceSettingT&& value) { SetTranscriptSourceSetting(std::forward<TranscriptSourceSettingT>(value)); return *this;}
133
135
140 inline const EncryptionSetting& GetEncryptionSetting() const { return m_encryptionSetting; }
141 template<typename EncryptionSettingT = EncryptionSetting>
142 void SetEncryptionSetting(EncryptionSettingT&& value) { m_encryptionSettingHasBeenSet = true; m_encryptionSetting = std::forward<EncryptionSettingT>(value); }
143 template<typename EncryptionSettingT = EncryptionSetting>
144 UpdateBotRecommendationResult& WithEncryptionSetting(EncryptionSettingT&& value) { SetEncryptionSetting(std::forward<EncryptionSettingT>(value)); return *this;}
146
148
149 inline const Aws::String& GetRequestId() const { return m_requestId; }
150 template<typename RequestIdT = Aws::String>
151 void SetRequestId(RequestIdT&& value) { m_requestIdHasBeenSet = true; m_requestId = std::forward<RequestIdT>(value); }
152 template<typename RequestIdT = Aws::String>
153 UpdateBotRecommendationResult& WithRequestId(RequestIdT&& value) { SetRequestId(std::forward<RequestIdT>(value)); return *this;}
155 private:
156
157 Aws::String m_botId;
158 bool m_botIdHasBeenSet = false;
159
160 Aws::String m_botVersion;
161 bool m_botVersionHasBeenSet = false;
162
163 Aws::String m_localeId;
164 bool m_localeIdHasBeenSet = false;
165
167 bool m_botRecommendationStatusHasBeenSet = false;
168
169 Aws::String m_botRecommendationId;
170 bool m_botRecommendationIdHasBeenSet = false;
171
172 Aws::Utils::DateTime m_creationDateTime{};
173 bool m_creationDateTimeHasBeenSet = false;
174
175 Aws::Utils::DateTime m_lastUpdatedDateTime{};
176 bool m_lastUpdatedDateTimeHasBeenSet = false;
177
178 TranscriptSourceSetting m_transcriptSourceSetting;
179 bool m_transcriptSourceSettingHasBeenSet = false;
180
181 EncryptionSetting m_encryptionSetting;
182 bool m_encryptionSettingHasBeenSet = false;
183
184 Aws::String m_requestId;
185 bool m_requestIdHasBeenSet = false;
186 };
187
188} // namespace Model
189} // namespace LexModelsV2
190} // namespace Aws
UpdateBotRecommendationResult & WithTranscriptSourceSetting(TranscriptSourceSettingT &&value)
UpdateBotRecommendationResult & WithBotRecommendationId(BotRecommendationIdT &&value)
UpdateBotRecommendationResult & WithLocaleId(LocaleIdT &&value)
UpdateBotRecommendationResult & WithRequestId(RequestIdT &&value)
UpdateBotRecommendationResult & WithEncryptionSetting(EncryptionSettingT &&value)
AWS_LEXMODELSV2_API UpdateBotRecommendationResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
UpdateBotRecommendationResult & WithLastUpdatedDateTime(LastUpdatedDateTimeT &&value)
UpdateBotRecommendationResult & WithBotRecommendationStatus(BotRecommendationStatus value)
UpdateBotRecommendationResult & WithCreationDateTime(CreationDateTimeT &&value)
UpdateBotRecommendationResult & WithBotVersion(BotVersionT &&value)
AWS_LEXMODELSV2_API UpdateBotRecommendationResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
UpdateBotRecommendationResult & WithBotId(BotIdT &&value)
AWS_LEXMODELSV2_API UpdateBotRecommendationResult()=default
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue