AWS SDK for C++

AWS SDK for C++ Version 1.11.606

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/core/utils/memory/stl/AWSString.h>
10#include <aws/qconnect/model/AIAgentType.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:
29 AWS_QCONNECT_API RemoveAssistantAIAgentRequest() = default;
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 Aws::String& GetAssistantId() const { return m_assistantId; }
48 inline bool AssistantIdHasBeenSet() const { return m_assistantIdHasBeenSet; }
49 template<typename AssistantIdT = Aws::String>
50 void SetAssistantId(AssistantIdT&& value) { m_assistantIdHasBeenSet = true; m_assistantId = std::forward<AssistantIdT>(value); }
51 template<typename AssistantIdT = Aws::String>
52 RemoveAssistantAIAgentRequest& WithAssistantId(AssistantIdT&& value) { SetAssistantId(std::forward<AssistantIdT>(value)); return *this;}
54
56
60 inline AIAgentType GetAiAgentType() const { return m_aiAgentType; }
61 inline bool AiAgentTypeHasBeenSet() const { return m_aiAgentTypeHasBeenSet; }
62 inline void SetAiAgentType(AIAgentType value) { m_aiAgentTypeHasBeenSet = true; m_aiAgentType = value; }
65 private:
66
67 Aws::String m_assistantId;
68 bool m_assistantIdHasBeenSet = false;
69
70 AIAgentType m_aiAgentType{AIAgentType::NOT_SET};
71 bool m_aiAgentTypeHasBeenSet = false;
72 };
73
74} // namespace Model
75} // namespace QConnect
76} // namespace Aws
AWS_QCONNECT_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
AWS_QCONNECT_API Aws::String SerializePayload() const override
RemoveAssistantAIAgentRequest & WithAssistantId(AssistantIdT &&value)
AWS_QCONNECT_API RemoveAssistantAIAgentRequest()=default
RemoveAssistantAIAgentRequest & WithAiAgentType(AIAgentType value)
std::shared_ptr< T > MakeShared(const char *allocationTag, ArgTypes &&... args)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String