AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
StopBotRecommendationResult.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 <utility>
11
12namespace Aws
13{
14template<typename RESULT_TYPE>
15class AmazonWebServiceResult;
16
17namespace Utils
18{
19namespace Json
20{
21 class JsonValue;
22} // namespace Json
23} // namespace Utils
24namespace LexModelsV2
25{
26namespace Model
27{
29 {
30 public:
31 AWS_LEXMODELSV2_API StopBotRecommendationResult();
34
35
37
41 inline const Aws::String& GetBotId() const{ return m_botId; }
42 inline void SetBotId(const Aws::String& value) { m_botId = value; }
43 inline void SetBotId(Aws::String&& value) { m_botId = std::move(value); }
44 inline void SetBotId(const char* value) { m_botId.assign(value); }
45 inline StopBotRecommendationResult& WithBotId(const Aws::String& value) { SetBotId(value); return *this;}
46 inline StopBotRecommendationResult& WithBotId(Aws::String&& value) { SetBotId(std::move(value)); return *this;}
47 inline StopBotRecommendationResult& WithBotId(const char* value) { SetBotId(value); return *this;}
49
51
55 inline const Aws::String& GetBotVersion() const{ return m_botVersion; }
56 inline void SetBotVersion(const Aws::String& value) { m_botVersion = value; }
57 inline void SetBotVersion(Aws::String&& value) { m_botVersion = std::move(value); }
58 inline void SetBotVersion(const char* value) { m_botVersion.assign(value); }
59 inline StopBotRecommendationResult& WithBotVersion(const Aws::String& value) { SetBotVersion(value); return *this;}
60 inline StopBotRecommendationResult& WithBotVersion(Aws::String&& value) { SetBotVersion(std::move(value)); return *this;}
61 inline StopBotRecommendationResult& WithBotVersion(const char* value) { SetBotVersion(value); return *this;}
63
65
71 inline const Aws::String& GetLocaleId() const{ return m_localeId; }
72 inline void SetLocaleId(const Aws::String& value) { m_localeId = value; }
73 inline void SetLocaleId(Aws::String&& value) { m_localeId = std::move(value); }
74 inline void SetLocaleId(const char* value) { m_localeId.assign(value); }
75 inline StopBotRecommendationResult& WithLocaleId(const Aws::String& value) { SetLocaleId(value); return *this;}
76 inline StopBotRecommendationResult& WithLocaleId(Aws::String&& value) { SetLocaleId(std::move(value)); return *this;}
77 inline StopBotRecommendationResult& WithLocaleId(const char* value) { SetLocaleId(value); return *this;}
79
81
85 inline const BotRecommendationStatus& GetBotRecommendationStatus() const{ return m_botRecommendationStatus; }
86 inline void SetBotRecommendationStatus(const BotRecommendationStatus& value) { m_botRecommendationStatus = value; }
87 inline void SetBotRecommendationStatus(BotRecommendationStatus&& value) { m_botRecommendationStatus = std::move(value); }
91
93
96 inline const Aws::String& GetBotRecommendationId() const{ return m_botRecommendationId; }
97 inline void SetBotRecommendationId(const Aws::String& value) { m_botRecommendationId = value; }
98 inline void SetBotRecommendationId(Aws::String&& value) { m_botRecommendationId = std::move(value); }
99 inline void SetBotRecommendationId(const char* value) { m_botRecommendationId.assign(value); }
102 inline StopBotRecommendationResult& WithBotRecommendationId(const char* value) { SetBotRecommendationId(value); return *this;}
104
106
107 inline const Aws::String& GetRequestId() const{ return m_requestId; }
108 inline void SetRequestId(const Aws::String& value) { m_requestId = value; }
109 inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); }
110 inline void SetRequestId(const char* value) { m_requestId.assign(value); }
111 inline StopBotRecommendationResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;}
112 inline StopBotRecommendationResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;}
113 inline StopBotRecommendationResult& WithRequestId(const char* value) { SetRequestId(value); return *this;}
115 private:
116
117 Aws::String m_botId;
118
119 Aws::String m_botVersion;
120
121 Aws::String m_localeId;
122
123 BotRecommendationStatus m_botRecommendationStatus;
124
125 Aws::String m_botRecommendationId;
126
127 Aws::String m_requestId;
128 };
129
130} // namespace Model
131} // namespace LexModelsV2
132} // namespace Aws
StopBotRecommendationResult & WithBotRecommendationId(Aws::String &&value)
StopBotRecommendationResult & WithRequestId(Aws::String &&value)
StopBotRecommendationResult & WithBotVersion(const char *value)
StopBotRecommendationResult & WithBotRecommendationId(const char *value)
StopBotRecommendationResult & WithRequestId(const char *value)
StopBotRecommendationResult & WithBotVersion(const Aws::String &value)
StopBotRecommendationResult & WithBotRecommendationStatus(const BotRecommendationStatus &value)
StopBotRecommendationResult & WithRequestId(const Aws::String &value)
void SetBotRecommendationStatus(BotRecommendationStatus &&value)
StopBotRecommendationResult & WithBotId(const char *value)
const BotRecommendationStatus & GetBotRecommendationStatus() const
StopBotRecommendationResult & WithBotRecommendationStatus(BotRecommendationStatus &&value)
StopBotRecommendationResult & WithBotVersion(Aws::String &&value)
StopBotRecommendationResult & WithBotId(Aws::String &&value)
void SetBotRecommendationStatus(const BotRecommendationStatus &value)
StopBotRecommendationResult & WithLocaleId(Aws::String &&value)
AWS_LEXMODELSV2_API StopBotRecommendationResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
AWS_LEXMODELSV2_API StopBotRecommendationResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
StopBotRecommendationResult & WithBotRecommendationId(const Aws::String &value)
StopBotRecommendationResult & WithLocaleId(const char *value)
StopBotRecommendationResult & WithLocaleId(const Aws::String &value)
StopBotRecommendationResult & WithBotId(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue