AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DeleteUtterancesRequest.h
1
6#pragma once
7#include <aws/lex-models/LexModelBuildingService_EXPORTS.h>
8#include <aws/lex-models/LexModelBuildingServiceRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace LexModelBuildingService
15{
16namespace Model
17{
18
22 {
23 public:
24 AWS_LEXMODELBUILDINGSERVICE_API DeleteUtterancesRequest();
25
26 // Service request name is the Operation name which will send this request out,
27 // each operation should has unique request name, so that we can get operation's name from this request.
28 // Note: this is not true for response, multiple operations may have the same response name,
29 // so we can not get operation's name from response.
30 inline virtual const char* GetServiceRequestName() const override { return "DeleteUtterances"; }
31
32 AWS_LEXMODELBUILDINGSERVICE_API Aws::String SerializePayload() const override;
33
34
36
39 inline const Aws::String& GetBotName() const{ return m_botName; }
40 inline bool BotNameHasBeenSet() const { return m_botNameHasBeenSet; }
41 inline void SetBotName(const Aws::String& value) { m_botNameHasBeenSet = true; m_botName = value; }
42 inline void SetBotName(Aws::String&& value) { m_botNameHasBeenSet = true; m_botName = std::move(value); }
43 inline void SetBotName(const char* value) { m_botNameHasBeenSet = true; m_botName.assign(value); }
44 inline DeleteUtterancesRequest& WithBotName(const Aws::String& value) { SetBotName(value); return *this;}
45 inline DeleteUtterancesRequest& WithBotName(Aws::String&& value) { SetBotName(std::move(value)); return *this;}
46 inline DeleteUtterancesRequest& WithBotName(const char* value) { SetBotName(value); return *this;}
48
50
58 inline const Aws::String& GetUserId() const{ return m_userId; }
59 inline bool UserIdHasBeenSet() const { return m_userIdHasBeenSet; }
60 inline void SetUserId(const Aws::String& value) { m_userIdHasBeenSet = true; m_userId = value; }
61 inline void SetUserId(Aws::String&& value) { m_userIdHasBeenSet = true; m_userId = std::move(value); }
62 inline void SetUserId(const char* value) { m_userIdHasBeenSet = true; m_userId.assign(value); }
63 inline DeleteUtterancesRequest& WithUserId(const Aws::String& value) { SetUserId(value); return *this;}
64 inline DeleteUtterancesRequest& WithUserId(Aws::String&& value) { SetUserId(std::move(value)); return *this;}
65 inline DeleteUtterancesRequest& WithUserId(const char* value) { SetUserId(value); return *this;}
67 private:
68
69 Aws::String m_botName;
70 bool m_botNameHasBeenSet = false;
71
72 Aws::String m_userId;
73 bool m_userIdHasBeenSet = false;
74 };
75
76} // namespace Model
77} // namespace LexModelBuildingService
78} // namespace Aws
AWS_LEXMODELBUILDINGSERVICE_API DeleteUtterancesRequest()
DeleteUtterancesRequest & WithBotName(const Aws::String &value)
DeleteUtterancesRequest & WithUserId(Aws::String &&value)
AWS_LEXMODELBUILDINGSERVICE_API Aws::String SerializePayload() const override
DeleteUtterancesRequest & WithBotName(Aws::String &&value)
DeleteUtterancesRequest & WithUserId(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String