AWS SDK for C++

AWS SDK for C++ Version 1.11.759

Loading...
Searching...
No Matches
GetExecutionFlowSnapshotRequest.h
1
6#pragma once
7#include <aws/bedrock-agent-runtime/BedrockAgentRuntimeRequest.h>
8#include <aws/bedrock-agent-runtime/BedrockAgentRuntime_EXPORTS.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10
11#include <utility>
12
13namespace Aws {
14namespace BedrockAgentRuntime {
15namespace Model {
16
20 public:
21 AWS_BEDROCKAGENTRUNTIME_API GetExecutionFlowSnapshotRequest() = default;
22
23 // Service request name is the Operation name which will send this request out,
24 // each operation should has unique request name, so that we can get operation's name from this request.
25 // Note: this is not true for response, multiple operations may have the same response name,
26 // so we can not get operation's name from response.
27 inline virtual const char* GetServiceRequestName() const override { return "GetExecutionFlowSnapshot"; }
28
29 AWS_BEDROCKAGENTRUNTIME_API Aws::String SerializePayload() const override;
30
32
35 inline const Aws::String& GetExecutionIdentifier() const { return m_executionIdentifier; }
36 inline bool ExecutionIdentifierHasBeenSet() const { return m_executionIdentifierHasBeenSet; }
37 template <typename ExecutionIdentifierT = Aws::String>
39 m_executionIdentifierHasBeenSet = true;
40 m_executionIdentifier = std::forward<ExecutionIdentifierT>(value);
41 }
42 template <typename ExecutionIdentifierT = Aws::String>
44 SetExecutionIdentifier(std::forward<ExecutionIdentifierT>(value));
45 return *this;
46 }
48
50
53 inline const Aws::String& GetFlowAliasIdentifier() const { return m_flowAliasIdentifier; }
54 inline bool FlowAliasIdentifierHasBeenSet() const { return m_flowAliasIdentifierHasBeenSet; }
55 template <typename FlowAliasIdentifierT = Aws::String>
57 m_flowAliasIdentifierHasBeenSet = true;
58 m_flowAliasIdentifier = std::forward<FlowAliasIdentifierT>(value);
59 }
60 template <typename FlowAliasIdentifierT = Aws::String>
62 SetFlowAliasIdentifier(std::forward<FlowAliasIdentifierT>(value));
63 return *this;
64 }
66
68
71 inline const Aws::String& GetFlowIdentifier() const { return m_flowIdentifier; }
72 inline bool FlowIdentifierHasBeenSet() const { return m_flowIdentifierHasBeenSet; }
73 template <typename FlowIdentifierT = Aws::String>
75 m_flowIdentifierHasBeenSet = true;
76 m_flowIdentifier = std::forward<FlowIdentifierT>(value);
77 }
78 template <typename FlowIdentifierT = Aws::String>
80 SetFlowIdentifier(std::forward<FlowIdentifierT>(value));
81 return *this;
82 }
84 private:
85 Aws::String m_executionIdentifier;
86
87 Aws::String m_flowAliasIdentifier;
88
89 Aws::String m_flowIdentifier;
90 bool m_executionIdentifierHasBeenSet = false;
91 bool m_flowAliasIdentifierHasBeenSet = false;
92 bool m_flowIdentifierHasBeenSet = false;
93};
94
95} // namespace Model
96} // namespace BedrockAgentRuntime
97} // 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::shared_ptr< T > MakeShared(const char *allocationTag, ArgTypes &&... args)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String