AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ListRecommendedIntentsResult.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/core/utils/memory/stl/AWSVector.h>
10#include <aws/lexv2-models/model/RecommendedIntentSummary.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 LexModelsV2
26{
27namespace Model
28{
30 {
31 public:
32 AWS_LEXMODELSV2_API ListRecommendedIntentsResult();
35
36
38
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 ListRecommendedIntentsResult& WithBotId(const Aws::String& value) { SetBotId(value); return *this;}
46 inline ListRecommendedIntentsResult& WithBotId(Aws::String&& value) { SetBotId(std::move(value)); return *this;}
47 inline ListRecommendedIntentsResult& WithBotId(const char* value) { SetBotId(value); return *this;}
49
51
54 inline const Aws::String& GetBotVersion() const{ return m_botVersion; }
55 inline void SetBotVersion(const Aws::String& value) { m_botVersion = value; }
56 inline void SetBotVersion(Aws::String&& value) { m_botVersion = std::move(value); }
57 inline void SetBotVersion(const char* value) { m_botVersion.assign(value); }
58 inline ListRecommendedIntentsResult& WithBotVersion(const Aws::String& value) { SetBotVersion(value); return *this;}
59 inline ListRecommendedIntentsResult& WithBotVersion(Aws::String&& value) { SetBotVersion(std::move(value)); return *this;}
60 inline ListRecommendedIntentsResult& WithBotVersion(const char* value) { SetBotVersion(value); return *this;}
62
64
70 inline const Aws::String& GetLocaleId() const{ return m_localeId; }
71 inline void SetLocaleId(const Aws::String& value) { m_localeId = value; }
72 inline void SetLocaleId(Aws::String&& value) { m_localeId = std::move(value); }
73 inline void SetLocaleId(const char* value) { m_localeId.assign(value); }
74 inline ListRecommendedIntentsResult& WithLocaleId(const Aws::String& value) { SetLocaleId(value); return *this;}
75 inline ListRecommendedIntentsResult& WithLocaleId(Aws::String&& value) { SetLocaleId(std::move(value)); return *this;}
76 inline ListRecommendedIntentsResult& WithLocaleId(const char* value) { SetLocaleId(value); return *this;}
78
80
84 inline const Aws::String& GetBotRecommendationId() const{ return m_botRecommendationId; }
85 inline void SetBotRecommendationId(const Aws::String& value) { m_botRecommendationId = value; }
86 inline void SetBotRecommendationId(Aws::String&& value) { m_botRecommendationId = std::move(value); }
87 inline void SetBotRecommendationId(const char* value) { m_botRecommendationId.assign(value); }
90 inline ListRecommendedIntentsResult& WithBotRecommendationId(const char* value) { SetBotRecommendationId(value); return *this;}
92
94
100 inline const Aws::Vector<RecommendedIntentSummary>& GetSummaryList() const{ return m_summaryList; }
101 inline void SetSummaryList(const Aws::Vector<RecommendedIntentSummary>& value) { m_summaryList = value; }
102 inline void SetSummaryList(Aws::Vector<RecommendedIntentSummary>&& value) { m_summaryList = std::move(value); }
105 inline ListRecommendedIntentsResult& AddSummaryList(const RecommendedIntentSummary& value) { m_summaryList.push_back(value); return *this; }
106 inline ListRecommendedIntentsResult& AddSummaryList(RecommendedIntentSummary&& value) { m_summaryList.push_back(std::move(value)); return *this; }
108
110
116 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
117 inline void SetNextToken(const Aws::String& value) { m_nextToken = value; }
118 inline void SetNextToken(Aws::String&& value) { m_nextToken = std::move(value); }
119 inline void SetNextToken(const char* value) { m_nextToken.assign(value); }
120 inline ListRecommendedIntentsResult& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
121 inline ListRecommendedIntentsResult& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
122 inline ListRecommendedIntentsResult& WithNextToken(const char* value) { SetNextToken(value); return *this;}
124
126
127 inline const Aws::String& GetRequestId() const{ return m_requestId; }
128 inline void SetRequestId(const Aws::String& value) { m_requestId = value; }
129 inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); }
130 inline void SetRequestId(const char* value) { m_requestId.assign(value); }
131 inline ListRecommendedIntentsResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;}
132 inline ListRecommendedIntentsResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;}
133 inline ListRecommendedIntentsResult& WithRequestId(const char* value) { SetRequestId(value); return *this;}
135 private:
136
137 Aws::String m_botId;
138
139 Aws::String m_botVersion;
140
141 Aws::String m_localeId;
142
143 Aws::String m_botRecommendationId;
144
146
147 Aws::String m_nextToken;
148
149 Aws::String m_requestId;
150 };
151
152} // namespace Model
153} // namespace LexModelsV2
154} // namespace Aws
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue