AWS SDK for C++

AWS SDK for C++ Version 1.11.743

Loading...
Searching...
No Matches
ChainedInvokeStartedDetails.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/lambda/Lambda_EXPORTS.h>
9#include <aws/lambda/model/EventInput.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Utils {
15namespace Json {
16class JsonValue;
17class JsonView;
18} // namespace Json
19} // namespace Utils
20namespace Lambda {
21namespace Model {
22
31 public:
32 AWS_LAMBDA_API ChainedInvokeStartedDetails() = default;
35 AWS_LAMBDA_API Aws::Utils::Json::JsonValue Jsonize() const;
36
38
41 inline const Aws::String& GetFunctionName() const { return m_functionName; }
42 inline bool FunctionNameHasBeenSet() const { return m_functionNameHasBeenSet; }
43 template <typename FunctionNameT = Aws::String>
44 void SetFunctionName(FunctionNameT&& value) {
45 m_functionNameHasBeenSet = true;
46 m_functionName = std::forward<FunctionNameT>(value);
47 }
48 template <typename FunctionNameT = Aws::String>
50 SetFunctionName(std::forward<FunctionNameT>(value));
51 return *this;
52 }
54
56
59 inline const Aws::String& GetTenantId() const { return m_tenantId; }
60 inline bool TenantIdHasBeenSet() const { return m_tenantIdHasBeenSet; }
61 template <typename TenantIdT = Aws::String>
62 void SetTenantId(TenantIdT&& value) {
63 m_tenantIdHasBeenSet = true;
64 m_tenantId = std::forward<TenantIdT>(value);
65 }
66 template <typename TenantIdT = Aws::String>
68 SetTenantId(std::forward<TenantIdT>(value));
69 return *this;
70 }
72
74
77 inline const EventInput& GetInput() const { return m_input; }
78 inline bool InputHasBeenSet() const { return m_inputHasBeenSet; }
79 template <typename InputT = EventInput>
80 void SetInput(InputT&& value) {
81 m_inputHasBeenSet = true;
82 m_input = std::forward<InputT>(value);
83 }
84 template <typename InputT = EventInput>
86 SetInput(std::forward<InputT>(value));
87 return *this;
88 }
90
92
95 inline const Aws::String& GetExecutedVersion() const { return m_executedVersion; }
96 inline bool ExecutedVersionHasBeenSet() const { return m_executedVersionHasBeenSet; }
97 template <typename ExecutedVersionT = Aws::String>
98 void SetExecutedVersion(ExecutedVersionT&& value) {
99 m_executedVersionHasBeenSet = true;
100 m_executedVersion = std::forward<ExecutedVersionT>(value);
101 }
102 template <typename ExecutedVersionT = Aws::String>
104 SetExecutedVersion(std::forward<ExecutedVersionT>(value));
105 return *this;
106 }
108
110
113 inline const Aws::String& GetDurableExecutionArn() const { return m_durableExecutionArn; }
114 inline bool DurableExecutionArnHasBeenSet() const { return m_durableExecutionArnHasBeenSet; }
115 template <typename DurableExecutionArnT = Aws::String>
116 void SetDurableExecutionArn(DurableExecutionArnT&& value) {
117 m_durableExecutionArnHasBeenSet = true;
118 m_durableExecutionArn = std::forward<DurableExecutionArnT>(value);
119 }
120 template <typename DurableExecutionArnT = Aws::String>
122 SetDurableExecutionArn(std::forward<DurableExecutionArnT>(value));
123 return *this;
124 }
126 private:
127 Aws::String m_functionName;
128
129 Aws::String m_tenantId;
130
131 EventInput m_input;
132
133 Aws::String m_executedVersion;
134
135 Aws::String m_durableExecutionArn;
136 bool m_functionNameHasBeenSet = false;
137 bool m_tenantIdHasBeenSet = false;
138 bool m_inputHasBeenSet = false;
139 bool m_executedVersionHasBeenSet = false;
140 bool m_durableExecutionArnHasBeenSet = false;
141};
142
143} // namespace Model
144} // namespace Lambda
145} // namespace Aws
ChainedInvokeStartedDetails & WithTenantId(TenantIdT &&value)
ChainedInvokeStartedDetails & WithExecutedVersion(ExecutedVersionT &&value)
AWS_LAMBDA_API ChainedInvokeStartedDetails & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_LAMBDA_API Aws::Utils::Json::JsonValue Jsonize() const
ChainedInvokeStartedDetails & WithDurableExecutionArn(DurableExecutionArnT &&value)
AWS_LAMBDA_API ChainedInvokeStartedDetails(Aws::Utils::Json::JsonView jsonValue)
ChainedInvokeStartedDetails & WithFunctionName(FunctionNameT &&value)
AWS_LAMBDA_API ChainedInvokeStartedDetails()=default
ChainedInvokeStartedDetails & WithInput(InputT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue