AWS SDK for C++

AWS SDK for C++ Version 1.11.768

Loading...
Searching...
No Matches
StartBotAnalyzerRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/lexv2-models/LexModelsV2Request.h>
9#include <aws/lexv2-models/LexModelsV2_EXPORTS.h>
10#include <aws/lexv2-models/model/AnalysisScope.h>
11
12#include <utility>
13
14namespace Aws {
15namespace LexModelsV2 {
16namespace Model {
17
21 public:
22 AWS_LEXMODELSV2_API StartBotAnalyzerRequest() = default;
23
24 // Service request name is the Operation name which will send this request out,
25 // each operation should has unique request name, so that we can get operation's name from this request.
26 // Note: this is not true for response, multiple operations may have the same response name,
27 // so we can not get operation's name from response.
28 inline virtual const char* GetServiceRequestName() const override { return "StartBotAnalyzer"; }
29
30 AWS_LEXMODELSV2_API Aws::String SerializePayload() const override;
31
33
36 inline const Aws::String& GetBotId() const { return m_botId; }
37 inline bool BotIdHasBeenSet() const { return m_botIdHasBeenSet; }
38 template <typename BotIdT = Aws::String>
39 void SetBotId(BotIdT&& value) {
40 m_botIdHasBeenSet = true;
41 m_botId = std::forward<BotIdT>(value);
42 }
43 template <typename BotIdT = Aws::String>
45 SetBotId(std::forward<BotIdT>(value));
46 return *this;
47 }
49
51
55 inline AnalysisScope GetAnalysisScope() const { return m_analysisScope; }
56 inline bool AnalysisScopeHasBeenSet() const { return m_analysisScopeHasBeenSet; }
57 inline void SetAnalysisScope(AnalysisScope value) {
58 m_analysisScopeHasBeenSet = true;
59 m_analysisScope = value;
60 }
62 SetAnalysisScope(value);
63 return *this;
64 }
66
68
72 inline const Aws::String& GetLocaleId() const { return m_localeId; }
73 inline bool LocaleIdHasBeenSet() const { return m_localeIdHasBeenSet; }
74 template <typename LocaleIdT = Aws::String>
75 void SetLocaleId(LocaleIdT&& value) {
76 m_localeIdHasBeenSet = true;
77 m_localeId = std::forward<LocaleIdT>(value);
78 }
79 template <typename LocaleIdT = Aws::String>
81 SetLocaleId(std::forward<LocaleIdT>(value));
82 return *this;
83 }
85
87
91 inline const Aws::String& GetBotVersion() const { return m_botVersion; }
92 inline bool BotVersionHasBeenSet() const { return m_botVersionHasBeenSet; }
93 template <typename BotVersionT = Aws::String>
94 void SetBotVersion(BotVersionT&& value) {
95 m_botVersionHasBeenSet = true;
96 m_botVersion = std::forward<BotVersionT>(value);
97 }
98 template <typename BotVersionT = Aws::String>
100 SetBotVersion(std::forward<BotVersionT>(value));
101 return *this;
102 }
104 private:
105 Aws::String m_botId;
106
107 AnalysisScope m_analysisScope{AnalysisScope::NOT_SET};
108
109 Aws::String m_localeId;
110
111 Aws::String m_botVersion;
112 bool m_botIdHasBeenSet = false;
113 bool m_analysisScopeHasBeenSet = false;
114 bool m_localeIdHasBeenSet = false;
115 bool m_botVersionHasBeenSet = false;
116};
117
118} // namespace Model
119} // namespace LexModelsV2
120} // namespace Aws
AWS_LEXMODELSV2_API Aws::String SerializePayload() const override
StartBotAnalyzerRequest & WithAnalysisScope(AnalysisScope value)
StartBotAnalyzerRequest & WithBotVersion(BotVersionT &&value)
StartBotAnalyzerRequest & WithBotId(BotIdT &&value)
StartBotAnalyzerRequest & WithLocaleId(LocaleIdT &&value)
AWS_LEXMODELSV2_API StartBotAnalyzerRequest()=default
virtual const char * GetServiceRequestName() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String