AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DisassociateAgentKnowledgeBaseRequest.h
1
6#pragma once
7#include <aws/bedrock-agent/BedrockAgent_EXPORTS.h>
8#include <aws/bedrock-agent/BedrockAgentRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace BedrockAgent
15{
16namespace Model
17{
18
22 {
23 public:
24 AWS_BEDROCKAGENT_API DisassociateAgentKnowledgeBaseRequest() = default;
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 "DisassociateAgentKnowledgeBase"; }
31
32 AWS_BEDROCKAGENT_API Aws::String SerializePayload() const override;
33
34
36
40 inline const Aws::String& GetAgentId() const { return m_agentId; }
41 inline bool AgentIdHasBeenSet() const { return m_agentIdHasBeenSet; }
42 template<typename AgentIdT = Aws::String>
43 void SetAgentId(AgentIdT&& value) { m_agentIdHasBeenSet = true; m_agentId = std::forward<AgentIdT>(value); }
44 template<typename AgentIdT = Aws::String>
45 DisassociateAgentKnowledgeBaseRequest& WithAgentId(AgentIdT&& value) { SetAgentId(std::forward<AgentIdT>(value)); return *this;}
47
49
52 inline const Aws::String& GetAgentVersion() const { return m_agentVersion; }
53 inline bool AgentVersionHasBeenSet() const { return m_agentVersionHasBeenSet; }
54 template<typename AgentVersionT = Aws::String>
55 void SetAgentVersion(AgentVersionT&& value) { m_agentVersionHasBeenSet = true; m_agentVersion = std::forward<AgentVersionT>(value); }
56 template<typename AgentVersionT = Aws::String>
57 DisassociateAgentKnowledgeBaseRequest& WithAgentVersion(AgentVersionT&& value) { SetAgentVersion(std::forward<AgentVersionT>(value)); return *this;}
59
61
64 inline const Aws::String& GetKnowledgeBaseId() const { return m_knowledgeBaseId; }
65 inline bool KnowledgeBaseIdHasBeenSet() const { return m_knowledgeBaseIdHasBeenSet; }
66 template<typename KnowledgeBaseIdT = Aws::String>
67 void SetKnowledgeBaseId(KnowledgeBaseIdT&& value) { m_knowledgeBaseIdHasBeenSet = true; m_knowledgeBaseId = std::forward<KnowledgeBaseIdT>(value); }
68 template<typename KnowledgeBaseIdT = Aws::String>
69 DisassociateAgentKnowledgeBaseRequest& WithKnowledgeBaseId(KnowledgeBaseIdT&& value) { SetKnowledgeBaseId(std::forward<KnowledgeBaseIdT>(value)); return *this;}
71 private:
72
73 Aws::String m_agentId;
74 bool m_agentIdHasBeenSet = false;
75
76 Aws::String m_agentVersion;
77 bool m_agentVersionHasBeenSet = false;
78
79 Aws::String m_knowledgeBaseId;
80 bool m_knowledgeBaseIdHasBeenSet = false;
81 };
82
83} // namespace Model
84} // namespace BedrockAgent
85} // namespace Aws
DisassociateAgentKnowledgeBaseRequest & WithKnowledgeBaseId(KnowledgeBaseIdT &&value)
DisassociateAgentKnowledgeBaseRequest & WithAgentId(AgentIdT &&value)
AWS_BEDROCKAGENT_API DisassociateAgentKnowledgeBaseRequest()=default
DisassociateAgentKnowledgeBaseRequest & WithAgentVersion(AgentVersionT &&value)
AWS_BEDROCKAGENT_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String