AWS SDK for C++

AWS SDK for C++ Version 1.11.719

Loading...
Searching...
No Matches
CheckpointUpdatedExecutionState.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/lambda/Lambda_EXPORTS.h>
10#include <aws/lambda/model/Operation.h>
11
12#include <utility>
13
14namespace Aws {
15namespace Utils {
16namespace Json {
17class JsonValue;
18class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace Lambda {
22namespace Model {
23
32 public:
33 AWS_LAMBDA_API CheckpointUpdatedExecutionState() = default;
36 AWS_LAMBDA_API Aws::Utils::Json::JsonValue Jsonize() const;
37
39
42 inline const Aws::Vector<Operation>& GetOperations() const { return m_operations; }
43 inline bool OperationsHasBeenSet() const { return m_operationsHasBeenSet; }
44 template <typename OperationsT = Aws::Vector<Operation>>
45 void SetOperations(OperationsT&& value) {
46 m_operationsHasBeenSet = true;
47 m_operations = std::forward<OperationsT>(value);
48 }
49 template <typename OperationsT = Aws::Vector<Operation>>
51 SetOperations(std::forward<OperationsT>(value));
52 return *this;
53 }
54 template <typename OperationsT = Operation>
56 m_operationsHasBeenSet = true;
57 m_operations.emplace_back(std::forward<OperationsT>(value));
58 return *this;
59 }
61
63
67 inline const Aws::String& GetNextMarker() const { return m_nextMarker; }
68 inline bool NextMarkerHasBeenSet() const { return m_nextMarkerHasBeenSet; }
69 template <typename NextMarkerT = Aws::String>
70 void SetNextMarker(NextMarkerT&& value) {
71 m_nextMarkerHasBeenSet = true;
72 m_nextMarker = std::forward<NextMarkerT>(value);
73 }
74 template <typename NextMarkerT = Aws::String>
76 SetNextMarker(std::forward<NextMarkerT>(value));
77 return *this;
78 }
80 private:
81 Aws::Vector<Operation> m_operations;
82
83 Aws::String m_nextMarker;
84 bool m_operationsHasBeenSet = false;
85 bool m_nextMarkerHasBeenSet = false;
86};
87
88} // namespace Model
89} // namespace Lambda
90} // namespace Aws
CheckpointUpdatedExecutionState & AddOperations(OperationsT &&value)
AWS_LAMBDA_API CheckpointUpdatedExecutionState(Aws::Utils::Json::JsonView jsonValue)
CheckpointUpdatedExecutionState & WithOperations(OperationsT &&value)
CheckpointUpdatedExecutionState & WithNextMarker(NextMarkerT &&value)
AWS_LAMBDA_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_LAMBDA_API CheckpointUpdatedExecutionState()=default
AWS_LAMBDA_API CheckpointUpdatedExecutionState & operator=(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue