AWS SDK for C++

AWS SDK for C++ Version 1.11.767

Loading...
Searching...
No Matches
DescribeBotAnalyzerRecommendationRequest.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
11#include <utility>
12
13namespace Aws {
14namespace LexModelsV2 {
15namespace Model {
16
20 public:
21 AWS_LEXMODELSV2_API DescribeBotAnalyzerRecommendationRequest() = default;
22
23 // Service request name is the Operation name which will send this request out,
24 // each operation should has unique request name, so that we can get operation's name from this request.
25 // Note: this is not true for response, multiple operations may have the same response name,
26 // so we can not get operation's name from response.
27 inline virtual const char* GetServiceRequestName() const override { return "DescribeBotAnalyzerRecommendation"; }
28
29 AWS_LEXMODELSV2_API Aws::String SerializePayload() const override;
30
32
35 inline const Aws::String& GetBotId() const { return m_botId; }
36 inline bool BotIdHasBeenSet() const { return m_botIdHasBeenSet; }
37 template <typename BotIdT = Aws::String>
38 void SetBotId(BotIdT&& value) {
39 m_botIdHasBeenSet = true;
40 m_botId = std::forward<BotIdT>(value);
41 }
42 template <typename BotIdT = Aws::String>
44 SetBotId(std::forward<BotIdT>(value));
45 return *this;
46 }
48
50
53 inline const Aws::String& GetBotAnalyzerRequestId() const { return m_botAnalyzerRequestId; }
54 inline bool BotAnalyzerRequestIdHasBeenSet() const { return m_botAnalyzerRequestIdHasBeenSet; }
55 template <typename BotAnalyzerRequestIdT = Aws::String>
56 void SetBotAnalyzerRequestId(BotAnalyzerRequestIdT&& value) {
57 m_botAnalyzerRequestIdHasBeenSet = true;
58 m_botAnalyzerRequestId = std::forward<BotAnalyzerRequestIdT>(value);
59 }
60 template <typename BotAnalyzerRequestIdT = Aws::String>
62 SetBotAnalyzerRequestId(std::forward<BotAnalyzerRequestIdT>(value));
63 return *this;
64 }
66
68
73 inline const Aws::String& GetNextToken() const { return m_nextToken; }
74 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
75 template <typename NextTokenT = Aws::String>
76 void SetNextToken(NextTokenT&& value) {
77 m_nextTokenHasBeenSet = true;
78 m_nextToken = std::forward<NextTokenT>(value);
79 }
80 template <typename NextTokenT = Aws::String>
82 SetNextToken(std::forward<NextTokenT>(value));
83 return *this;
84 }
86
88
92 inline int GetMaxResults() const { return m_maxResults; }
93 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
94 inline void SetMaxResults(int value) {
95 m_maxResultsHasBeenSet = true;
96 m_maxResults = value;
97 }
99 SetMaxResults(value);
100 return *this;
101 }
103 private:
104 Aws::String m_botId;
105
106 Aws::String m_botAnalyzerRequestId;
107
108 Aws::String m_nextToken;
109
110 int m_maxResults{0};
111 bool m_botIdHasBeenSet = false;
112 bool m_botAnalyzerRequestIdHasBeenSet = false;
113 bool m_nextTokenHasBeenSet = false;
114 bool m_maxResultsHasBeenSet = false;
115};
116
117} // namespace Model
118} // namespace LexModelsV2
119} // namespace Aws
DescribeBotAnalyzerRecommendationRequest & WithBotAnalyzerRequestId(BotAnalyzerRequestIdT &&value)
DescribeBotAnalyzerRecommendationRequest & WithNextToken(NextTokenT &&value)
AWS_LEXMODELSV2_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String