AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DeleteAgentActionGroupRequest.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 Http
15{
16 class URI;
17} //namespace Http
18namespace BedrockAgent
19{
20namespace Model
21{
22
26 {
27 public:
28 AWS_BEDROCKAGENT_API DeleteAgentActionGroupRequest() = default;
29
30 // Service request name is the Operation name which will send this request out,
31 // each operation should has unique request name, so that we can get operation's name from this request.
32 // Note: this is not true for response, multiple operations may have the same response name,
33 // so we can not get operation's name from response.
34 inline virtual const char* GetServiceRequestName() const override { return "DeleteAgentActionGroup"; }
35
36 AWS_BEDROCKAGENT_API Aws::String SerializePayload() const override;
37
38 AWS_BEDROCKAGENT_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
39
40
42
45 inline const Aws::String& GetActionGroupId() const { return m_actionGroupId; }
46 inline bool ActionGroupIdHasBeenSet() const { return m_actionGroupIdHasBeenSet; }
47 template<typename ActionGroupIdT = Aws::String>
48 void SetActionGroupId(ActionGroupIdT&& value) { m_actionGroupIdHasBeenSet = true; m_actionGroupId = std::forward<ActionGroupIdT>(value); }
49 template<typename ActionGroupIdT = Aws::String>
50 DeleteAgentActionGroupRequest& WithActionGroupId(ActionGroupIdT&& value) { SetActionGroupId(std::forward<ActionGroupIdT>(value)); return *this;}
52
54
57 inline const Aws::String& GetAgentId() const { return m_agentId; }
58 inline bool AgentIdHasBeenSet() const { return m_agentIdHasBeenSet; }
59 template<typename AgentIdT = Aws::String>
60 void SetAgentId(AgentIdT&& value) { m_agentIdHasBeenSet = true; m_agentId = std::forward<AgentIdT>(value); }
61 template<typename AgentIdT = Aws::String>
62 DeleteAgentActionGroupRequest& WithAgentId(AgentIdT&& value) { SetAgentId(std::forward<AgentIdT>(value)); return *this;}
64
66
69 inline const Aws::String& GetAgentVersion() const { return m_agentVersion; }
70 inline bool AgentVersionHasBeenSet() const { return m_agentVersionHasBeenSet; }
71 template<typename AgentVersionT = Aws::String>
72 void SetAgentVersion(AgentVersionT&& value) { m_agentVersionHasBeenSet = true; m_agentVersion = std::forward<AgentVersionT>(value); }
73 template<typename AgentVersionT = Aws::String>
74 DeleteAgentActionGroupRequest& WithAgentVersion(AgentVersionT&& value) { SetAgentVersion(std::forward<AgentVersionT>(value)); return *this;}
76
78
83 inline bool GetSkipResourceInUseCheck() const { return m_skipResourceInUseCheck; }
84 inline bool SkipResourceInUseCheckHasBeenSet() const { return m_skipResourceInUseCheckHasBeenSet; }
85 inline void SetSkipResourceInUseCheck(bool value) { m_skipResourceInUseCheckHasBeenSet = true; m_skipResourceInUseCheck = value; }
88 private:
89
90 Aws::String m_actionGroupId;
91 bool m_actionGroupIdHasBeenSet = false;
92
93 Aws::String m_agentId;
94 bool m_agentIdHasBeenSet = false;
95
96 Aws::String m_agentVersion;
97 bool m_agentVersionHasBeenSet = false;
98
99 bool m_skipResourceInUseCheck{false};
100 bool m_skipResourceInUseCheckHasBeenSet = false;
101 };
102
103} // namespace Model
104} // namespace BedrockAgent
105} // namespace Aws
AWS_BEDROCKAGENT_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
DeleteAgentActionGroupRequest & WithSkipResourceInUseCheck(bool value)
DeleteAgentActionGroupRequest & WithAgentId(AgentIdT &&value)
DeleteAgentActionGroupRequest & WithAgentVersion(AgentVersionT &&value)
AWS_BEDROCKAGENT_API DeleteAgentActionGroupRequest()=default
DeleteAgentActionGroupRequest & WithActionGroupId(ActionGroupIdT &&value)
AWS_BEDROCKAGENT_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String