AWS SDK for C++

AWS SDK for C++ Version 1.11.748

Loading...
Searching...
No Matches
StartBotResourceGenerationRequest.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 StartBotResourceGenerationRequest() = 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 "StartBotResourceGeneration"; }
28
29 AWS_LEXMODELSV2_API Aws::String SerializePayload() const override;
30
32
38 inline const Aws::String& GetGenerationInputPrompt() const { return m_generationInputPrompt; }
39 inline bool GenerationInputPromptHasBeenSet() const { return m_generationInputPromptHasBeenSet; }
40 template <typename GenerationInputPromptT = Aws::String>
41 void SetGenerationInputPrompt(GenerationInputPromptT&& value) {
42 m_generationInputPromptHasBeenSet = true;
43 m_generationInputPrompt = std::forward<GenerationInputPromptT>(value);
44 }
45 template <typename GenerationInputPromptT = Aws::String>
47 SetGenerationInputPrompt(std::forward<GenerationInputPromptT>(value));
48 return *this;
49 }
51
53
57 inline const Aws::String& GetBotId() const { return m_botId; }
58 inline bool BotIdHasBeenSet() const { return m_botIdHasBeenSet; }
59 template <typename BotIdT = Aws::String>
60 void SetBotId(BotIdT&& value) {
61 m_botIdHasBeenSet = true;
62 m_botId = std::forward<BotIdT>(value);
63 }
64 template <typename BotIdT = Aws::String>
66 SetBotId(std::forward<BotIdT>(value));
67 return *this;
68 }
70
72
75 inline const Aws::String& GetBotVersion() const { return m_botVersion; }
76 inline bool BotVersionHasBeenSet() const { return m_botVersionHasBeenSet; }
77 template <typename BotVersionT = Aws::String>
78 void SetBotVersion(BotVersionT&& value) {
79 m_botVersionHasBeenSet = true;
80 m_botVersion = std::forward<BotVersionT>(value);
81 }
82 template <typename BotVersionT = Aws::String>
84 SetBotVersion(std::forward<BotVersionT>(value));
85 return *this;
86 }
88
90
93 inline const Aws::String& GetLocaleId() const { return m_localeId; }
94 inline bool LocaleIdHasBeenSet() const { return m_localeIdHasBeenSet; }
95 template <typename LocaleIdT = Aws::String>
96 void SetLocaleId(LocaleIdT&& value) {
97 m_localeIdHasBeenSet = true;
98 m_localeId = std::forward<LocaleIdT>(value);
99 }
100 template <typename LocaleIdT = Aws::String>
102 SetLocaleId(std::forward<LocaleIdT>(value));
103 return *this;
104 }
106 private:
107 Aws::String m_generationInputPrompt;
108
109 Aws::String m_botId;
110
111 Aws::String m_botVersion;
112
113 Aws::String m_localeId;
114 bool m_generationInputPromptHasBeenSet = false;
115 bool m_botIdHasBeenSet = false;
116 bool m_botVersionHasBeenSet = false;
117 bool m_localeIdHasBeenSet = false;
118};
119
120} // namespace Model
121} // namespace LexModelsV2
122} // namespace Aws
StartBotResourceGenerationRequest & WithLocaleId(LocaleIdT &&value)
StartBotResourceGenerationRequest & WithBotVersion(BotVersionT &&value)
StartBotResourceGenerationRequest & WithGenerationInputPrompt(GenerationInputPromptT &&value)
StartBotResourceGenerationRequest & WithBotId(BotIdT &&value)
AWS_LEXMODELSV2_API StartBotResourceGenerationRequest()=default
AWS_LEXMODELSV2_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String