AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
GetExecutionFlowSnapshotRequest.h
1
6#pragma once
7#include <aws/bedrock-agent-runtime/BedrockAgentRuntime_EXPORTS.h>
8#include <aws/bedrock-agent-runtime/BedrockAgentRuntimeRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace BedrockAgentRuntime
15{
16namespace Model
17{
18
22 {
23 public:
24 AWS_BEDROCKAGENTRUNTIME_API GetExecutionFlowSnapshotRequest() = 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 "GetExecutionFlowSnapshot"; }
31
32 AWS_BEDROCKAGENTRUNTIME_API Aws::String SerializePayload() const override;
33
34
36
39 inline const Aws::String& GetExecutionIdentifier() const { return m_executionIdentifier; }
40 inline bool ExecutionIdentifierHasBeenSet() const { return m_executionIdentifierHasBeenSet; }
41 template<typename ExecutionIdentifierT = Aws::String>
42 void SetExecutionIdentifier(ExecutionIdentifierT&& value) { m_executionIdentifierHasBeenSet = true; m_executionIdentifier = std::forward<ExecutionIdentifierT>(value); }
43 template<typename ExecutionIdentifierT = Aws::String>
44 GetExecutionFlowSnapshotRequest& WithExecutionIdentifier(ExecutionIdentifierT&& value) { SetExecutionIdentifier(std::forward<ExecutionIdentifierT>(value)); return *this;}
46
48
51 inline const Aws::String& GetFlowAliasIdentifier() const { return m_flowAliasIdentifier; }
52 inline bool FlowAliasIdentifierHasBeenSet() const { return m_flowAliasIdentifierHasBeenSet; }
53 template<typename FlowAliasIdentifierT = Aws::String>
54 void SetFlowAliasIdentifier(FlowAliasIdentifierT&& value) { m_flowAliasIdentifierHasBeenSet = true; m_flowAliasIdentifier = std::forward<FlowAliasIdentifierT>(value); }
55 template<typename FlowAliasIdentifierT = Aws::String>
56 GetExecutionFlowSnapshotRequest& WithFlowAliasIdentifier(FlowAliasIdentifierT&& value) { SetFlowAliasIdentifier(std::forward<FlowAliasIdentifierT>(value)); return *this;}
58
60
63 inline const Aws::String& GetFlowIdentifier() const { return m_flowIdentifier; }
64 inline bool FlowIdentifierHasBeenSet() const { return m_flowIdentifierHasBeenSet; }
65 template<typename FlowIdentifierT = Aws::String>
66 void SetFlowIdentifier(FlowIdentifierT&& value) { m_flowIdentifierHasBeenSet = true; m_flowIdentifier = std::forward<FlowIdentifierT>(value); }
67 template<typename FlowIdentifierT = Aws::String>
68 GetExecutionFlowSnapshotRequest& WithFlowIdentifier(FlowIdentifierT&& value) { SetFlowIdentifier(std::forward<FlowIdentifierT>(value)); return *this;}
70 private:
71
72 Aws::String m_executionIdentifier;
73 bool m_executionIdentifierHasBeenSet = false;
74
75 Aws::String m_flowAliasIdentifier;
76 bool m_flowAliasIdentifierHasBeenSet = false;
77
78 Aws::String m_flowIdentifier;
79 bool m_flowIdentifierHasBeenSet = false;
80 };
81
82} // namespace Model
83} // namespace BedrockAgentRuntime
84} // namespace Aws
AWS_BEDROCKAGENTRUNTIME_API Aws::String SerializePayload() const override
GetExecutionFlowSnapshotRequest & WithFlowIdentifier(FlowIdentifierT &&value)
GetExecutionFlowSnapshotRequest & WithExecutionIdentifier(ExecutionIdentifierT &&value)
GetExecutionFlowSnapshotRequest & WithFlowAliasIdentifier(FlowAliasIdentifierT &&value)
AWS_BEDROCKAGENTRUNTIME_API GetExecutionFlowSnapshotRequest()=default
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String