AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
RemoveAssistantAIAgentRequest.h
1
6#pragma once
7#include <aws/qconnect/QConnect_EXPORTS.h>
8#include <aws/qconnect/QConnectRequest.h>
9#include <aws/qconnect/model/AIAgentType.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Http
16{
17 class URI;
18} //namespace Http
19namespace QConnect
20{
21namespace Model
22{
23
27 {
28 public:
30
31 // Service request name is the Operation name which will send this request out,
32 // each operation should has unique request name, so that we can get operation's name from this request.
33 // Note: this is not true for response, multiple operations may have the same response name,
34 // so we can not get operation's name from response.
35 inline virtual const char* GetServiceRequestName() const override { return "RemoveAssistantAIAgent"; }
36
37 AWS_QCONNECT_API Aws::String SerializePayload() const override;
38
39 AWS_QCONNECT_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
40
41
43
47 inline const AIAgentType& GetAiAgentType() const{ return m_aiAgentType; }
48 inline bool AiAgentTypeHasBeenSet() const { return m_aiAgentTypeHasBeenSet; }
49 inline void SetAiAgentType(const AIAgentType& value) { m_aiAgentTypeHasBeenSet = true; m_aiAgentType = value; }
50 inline void SetAiAgentType(AIAgentType&& value) { m_aiAgentTypeHasBeenSet = true; m_aiAgentType = std::move(value); }
51 inline RemoveAssistantAIAgentRequest& WithAiAgentType(const AIAgentType& value) { SetAiAgentType(value); return *this;}
52 inline RemoveAssistantAIAgentRequest& WithAiAgentType(AIAgentType&& value) { SetAiAgentType(std::move(value)); return *this;}
54
56
60 inline const Aws::String& GetAssistantId() const{ return m_assistantId; }
61 inline bool AssistantIdHasBeenSet() const { return m_assistantIdHasBeenSet; }
62 inline void SetAssistantId(const Aws::String& value) { m_assistantIdHasBeenSet = true; m_assistantId = value; }
63 inline void SetAssistantId(Aws::String&& value) { m_assistantIdHasBeenSet = true; m_assistantId = std::move(value); }
64 inline void SetAssistantId(const char* value) { m_assistantIdHasBeenSet = true; m_assistantId.assign(value); }
65 inline RemoveAssistantAIAgentRequest& WithAssistantId(const Aws::String& value) { SetAssistantId(value); return *this;}
66 inline RemoveAssistantAIAgentRequest& WithAssistantId(Aws::String&& value) { SetAssistantId(std::move(value)); return *this;}
67 inline RemoveAssistantAIAgentRequest& WithAssistantId(const char* value) { SetAssistantId(value); return *this;}
69 private:
70
71 AIAgentType m_aiAgentType;
72 bool m_aiAgentTypeHasBeenSet = false;
73
74 Aws::String m_assistantId;
75 bool m_assistantIdHasBeenSet = false;
76 };
77
78} // namespace Model
79} // namespace QConnect
80} // namespace Aws
AWS_QCONNECT_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
AWS_QCONNECT_API Aws::String SerializePayload() const override
RemoveAssistantAIAgentRequest & WithAssistantId(const char *value)
RemoveAssistantAIAgentRequest & WithAiAgentType(const AIAgentType &value)
RemoveAssistantAIAgentRequest & WithAssistantId(Aws::String &&value)
RemoveAssistantAIAgentRequest & WithAssistantId(const Aws::String &value)
RemoveAssistantAIAgentRequest & WithAiAgentType(AIAgentType &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String