AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DisassociateLexBotRequest.h
1
6#pragma once
7#include <aws/connect/Connect_EXPORTS.h>
8#include <aws/connect/ConnectRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Http
15{
16 class URI;
17} //namespace Http
18namespace Connect
19{
20namespace Model
21{
22
26 {
27 public:
28 AWS_CONNECT_API DisassociateLexBotRequest();
29
30 // Service request name is the Operation name which will send this request out,
31 // each operation should has unique request name, so that we can get operation's name from this request.
32 // Note: this is not true for response, multiple operations may have the same response name,
33 // so we can not get operation's name from response.
34 inline virtual const char* GetServiceRequestName() const override { return "DisassociateLexBot"; }
35
36 AWS_CONNECT_API Aws::String SerializePayload() const override;
37
38 AWS_CONNECT_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
39
40
42
47 inline const Aws::String& GetInstanceId() const{ return m_instanceId; }
48 inline bool InstanceIdHasBeenSet() const { return m_instanceIdHasBeenSet; }
49 inline void SetInstanceId(const Aws::String& value) { m_instanceIdHasBeenSet = true; m_instanceId = value; }
50 inline void SetInstanceId(Aws::String&& value) { m_instanceIdHasBeenSet = true; m_instanceId = std::move(value); }
51 inline void SetInstanceId(const char* value) { m_instanceIdHasBeenSet = true; m_instanceId.assign(value); }
52 inline DisassociateLexBotRequest& WithInstanceId(const Aws::String& value) { SetInstanceId(value); return *this;}
53 inline DisassociateLexBotRequest& WithInstanceId(Aws::String&& value) { SetInstanceId(std::move(value)); return *this;}
54 inline DisassociateLexBotRequest& WithInstanceId(const char* value) { SetInstanceId(value); return *this;}
56
58
61 inline const Aws::String& GetBotName() const{ return m_botName; }
62 inline bool BotNameHasBeenSet() const { return m_botNameHasBeenSet; }
63 inline void SetBotName(const Aws::String& value) { m_botNameHasBeenSet = true; m_botName = value; }
64 inline void SetBotName(Aws::String&& value) { m_botNameHasBeenSet = true; m_botName = std::move(value); }
65 inline void SetBotName(const char* value) { m_botNameHasBeenSet = true; m_botName.assign(value); }
66 inline DisassociateLexBotRequest& WithBotName(const Aws::String& value) { SetBotName(value); return *this;}
67 inline DisassociateLexBotRequest& WithBotName(Aws::String&& value) { SetBotName(std::move(value)); return *this;}
68 inline DisassociateLexBotRequest& WithBotName(const char* value) { SetBotName(value); return *this;}
70
72
76 inline const Aws::String& GetLexRegion() const{ return m_lexRegion; }
77 inline bool LexRegionHasBeenSet() const { return m_lexRegionHasBeenSet; }
78 inline void SetLexRegion(const Aws::String& value) { m_lexRegionHasBeenSet = true; m_lexRegion = value; }
79 inline void SetLexRegion(Aws::String&& value) { m_lexRegionHasBeenSet = true; m_lexRegion = std::move(value); }
80 inline void SetLexRegion(const char* value) { m_lexRegionHasBeenSet = true; m_lexRegion.assign(value); }
81 inline DisassociateLexBotRequest& WithLexRegion(const Aws::String& value) { SetLexRegion(value); return *this;}
82 inline DisassociateLexBotRequest& WithLexRegion(Aws::String&& value) { SetLexRegion(std::move(value)); return *this;}
83 inline DisassociateLexBotRequest& WithLexRegion(const char* value) { SetLexRegion(value); return *this;}
85 private:
86
87 Aws::String m_instanceId;
88 bool m_instanceIdHasBeenSet = false;
89
90 Aws::String m_botName;
91 bool m_botNameHasBeenSet = false;
92
93 Aws::String m_lexRegion;
94 bool m_lexRegionHasBeenSet = false;
95 };
96
97} // namespace Model
98} // namespace Connect
99} // namespace Aws
virtual const char * GetServiceRequestName() const override
DisassociateLexBotRequest & WithBotName(Aws::String &&value)
DisassociateLexBotRequest & WithInstanceId(Aws::String &&value)
AWS_CONNECT_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
AWS_CONNECT_API Aws::String SerializePayload() const override
DisassociateLexBotRequest & WithLexRegion(Aws::String &&value)
DisassociateLexBotRequest & WithLexRegion(const Aws::String &value)
DisassociateLexBotRequest & WithInstanceId(const Aws::String &value)
DisassociateLexBotRequest & WithLexRegion(const char *value)
DisassociateLexBotRequest & WithBotName(const char *value)
DisassociateLexBotRequest & WithInstanceId(const char *value)
DisassociateLexBotRequest & WithBotName(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String