AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
GetAgentActionGroupRequest.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 GetAgentActionGroupRequest() = 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 "GetAgentActionGroup"; }
31
32 AWS_BEDROCKAGENT_API Aws::String SerializePayload() const override;
33
34
36
39 inline const Aws::String& GetActionGroupId() const { return m_actionGroupId; }
40 inline bool ActionGroupIdHasBeenSet() const { return m_actionGroupIdHasBeenSet; }
41 template<typename ActionGroupIdT = Aws::String>
42 void SetActionGroupId(ActionGroupIdT&& value) { m_actionGroupIdHasBeenSet = true; m_actionGroupId = std::forward<ActionGroupIdT>(value); }
43 template<typename ActionGroupIdT = Aws::String>
44 GetAgentActionGroupRequest& WithActionGroupId(ActionGroupIdT&& value) { SetActionGroupId(std::forward<ActionGroupIdT>(value)); return *this;}
46
48
51 inline const Aws::String& GetAgentId() const { return m_agentId; }
52 inline bool AgentIdHasBeenSet() const { return m_agentIdHasBeenSet; }
53 template<typename AgentIdT = Aws::String>
54 void SetAgentId(AgentIdT&& value) { m_agentIdHasBeenSet = true; m_agentId = std::forward<AgentIdT>(value); }
55 template<typename AgentIdT = Aws::String>
56 GetAgentActionGroupRequest& WithAgentId(AgentIdT&& value) { SetAgentId(std::forward<AgentIdT>(value)); return *this;}
58
60
63 inline const Aws::String& GetAgentVersion() const { return m_agentVersion; }
64 inline bool AgentVersionHasBeenSet() const { return m_agentVersionHasBeenSet; }
65 template<typename AgentVersionT = Aws::String>
66 void SetAgentVersion(AgentVersionT&& value) { m_agentVersionHasBeenSet = true; m_agentVersion = std::forward<AgentVersionT>(value); }
67 template<typename AgentVersionT = Aws::String>
68 GetAgentActionGroupRequest& WithAgentVersion(AgentVersionT&& value) { SetAgentVersion(std::forward<AgentVersionT>(value)); return *this;}
70 private:
71
72 Aws::String m_actionGroupId;
73 bool m_actionGroupIdHasBeenSet = false;
74
75 Aws::String m_agentId;
76 bool m_agentIdHasBeenSet = false;
77
78 Aws::String m_agentVersion;
79 bool m_agentVersionHasBeenSet = false;
80 };
81
82} // namespace Model
83} // namespace BedrockAgent
84} // namespace Aws
AWS_BEDROCKAGENT_API Aws::String SerializePayload() const override
GetAgentActionGroupRequest & WithAgentId(AgentIdT &&value)
AWS_BEDROCKAGENT_API GetAgentActionGroupRequest()=default
GetAgentActionGroupRequest & WithAgentVersion(AgentVersionT &&value)
GetAgentActionGroupRequest & WithActionGroupId(ActionGroupIdT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String