AWS SDK for C++

AWS SDK for C++ Version 1.11.606

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