AWS SDK for C++

AWS SDK for C++ Version 1.11.748

Loading...
Searching...
No Matches
DeleteBotLocaleRequest.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 DeleteBotLocaleRequest() = 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 "DeleteBotLocale"; }
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& GetBotVersion() const { return m_botVersion; }
54 inline bool BotVersionHasBeenSet() const { return m_botVersionHasBeenSet; }
55 template <typename BotVersionT = Aws::String>
56 void SetBotVersion(BotVersionT&& value) {
57 m_botVersionHasBeenSet = true;
58 m_botVersion = std::forward<BotVersionT>(value);
59 }
60 template <typename BotVersionT = Aws::String>
61 DeleteBotLocaleRequest& WithBotVersion(BotVersionT&& value) {
62 SetBotVersion(std::forward<BotVersionT>(value));
63 return *this;
64 }
66
68
74 inline const Aws::String& GetLocaleId() const { return m_localeId; }
75 inline bool LocaleIdHasBeenSet() const { return m_localeIdHasBeenSet; }
76 template <typename LocaleIdT = Aws::String>
77 void SetLocaleId(LocaleIdT&& value) {
78 m_localeIdHasBeenSet = true;
79 m_localeId = std::forward<LocaleIdT>(value);
80 }
81 template <typename LocaleIdT = Aws::String>
83 SetLocaleId(std::forward<LocaleIdT>(value));
84 return *this;
85 }
87 private:
88 Aws::String m_botId;
89
90 Aws::String m_botVersion;
91
92 Aws::String m_localeId;
93 bool m_botIdHasBeenSet = false;
94 bool m_botVersionHasBeenSet = false;
95 bool m_localeIdHasBeenSet = false;
96};
97
98} // namespace Model
99} // namespace LexModelsV2
100} // namespace Aws
AWS_LEXMODELSV2_API Aws::String SerializePayload() const override
virtual const char * GetServiceRequestName() const override
DeleteBotLocaleRequest & WithBotVersion(BotVersionT &&value)
DeleteBotLocaleRequest & WithBotId(BotIdT &&value)
DeleteBotLocaleRequest & WithLocaleId(LocaleIdT &&value)
AWS_LEXMODELSV2_API DeleteBotLocaleRequest()=default
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String