AWS SDK for C++

AWS SDK for C++ Version 1.11.750

Loading...
Searching...
No Matches
MatchingWorkflowSummary.h
1
6#pragma once
7#include <aws/core/utils/DateTime.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/entityresolution/EntityResolution_EXPORTS.h>
10#include <aws/entityresolution/model/ResolutionType.h>
11
12#include <utility>
13
14namespace Aws {
15namespace Utils {
16namespace Json {
17class JsonValue;
18class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace EntityResolution {
22namespace Model {
23
33 public:
34 AWS_ENTITYRESOLUTION_API MatchingWorkflowSummary() = default;
35 AWS_ENTITYRESOLUTION_API MatchingWorkflowSummary(Aws::Utils::Json::JsonView jsonValue);
36 AWS_ENTITYRESOLUTION_API MatchingWorkflowSummary& operator=(Aws::Utils::Json::JsonView jsonValue);
37 AWS_ENTITYRESOLUTION_API Aws::Utils::Json::JsonValue Jsonize() const;
38
40
43 inline const Aws::String& GetWorkflowName() const { return m_workflowName; }
44 inline bool WorkflowNameHasBeenSet() const { return m_workflowNameHasBeenSet; }
45 template <typename WorkflowNameT = Aws::String>
46 void SetWorkflowName(WorkflowNameT&& value) {
47 m_workflowNameHasBeenSet = true;
48 m_workflowName = std::forward<WorkflowNameT>(value);
49 }
50 template <typename WorkflowNameT = Aws::String>
51 MatchingWorkflowSummary& WithWorkflowName(WorkflowNameT&& value) {
52 SetWorkflowName(std::forward<WorkflowNameT>(value));
53 return *this;
54 }
56
58
62 inline const Aws::String& GetWorkflowArn() const { return m_workflowArn; }
63 inline bool WorkflowArnHasBeenSet() const { return m_workflowArnHasBeenSet; }
64 template <typename WorkflowArnT = Aws::String>
65 void SetWorkflowArn(WorkflowArnT&& value) {
66 m_workflowArnHasBeenSet = true;
67 m_workflowArn = std::forward<WorkflowArnT>(value);
68 }
69 template <typename WorkflowArnT = Aws::String>
71 SetWorkflowArn(std::forward<WorkflowArnT>(value));
72 return *this;
73 }
75
77
80 inline const Aws::Utils::DateTime& GetCreatedAt() const { return m_createdAt; }
81 inline bool CreatedAtHasBeenSet() const { return m_createdAtHasBeenSet; }
82 template <typename CreatedAtT = Aws::Utils::DateTime>
83 void SetCreatedAt(CreatedAtT&& value) {
84 m_createdAtHasBeenSet = true;
85 m_createdAt = std::forward<CreatedAtT>(value);
86 }
87 template <typename CreatedAtT = Aws::Utils::DateTime>
89 SetCreatedAt(std::forward<CreatedAtT>(value));
90 return *this;
91 }
93
95
98 inline const Aws::Utils::DateTime& GetUpdatedAt() const { return m_updatedAt; }
99 inline bool UpdatedAtHasBeenSet() const { return m_updatedAtHasBeenSet; }
100 template <typename UpdatedAtT = Aws::Utils::DateTime>
101 void SetUpdatedAt(UpdatedAtT&& value) {
102 m_updatedAtHasBeenSet = true;
103 m_updatedAt = std::forward<UpdatedAtT>(value);
104 }
105 template <typename UpdatedAtT = Aws::Utils::DateTime>
107 SetUpdatedAt(std::forward<UpdatedAtT>(value));
108 return *this;
109 }
111
113
117 inline ResolutionType GetResolutionType() const { return m_resolutionType; }
118 inline bool ResolutionTypeHasBeenSet() const { return m_resolutionTypeHasBeenSet; }
120 m_resolutionTypeHasBeenSet = true;
121 m_resolutionType = value;
122 }
124 SetResolutionType(value);
125 return *this;
126 }
128 private:
129 Aws::String m_workflowName;
130
131 Aws::String m_workflowArn;
132
133 Aws::Utils::DateTime m_createdAt{};
134
135 Aws::Utils::DateTime m_updatedAt{};
136
137 ResolutionType m_resolutionType{ResolutionType::NOT_SET};
138 bool m_workflowNameHasBeenSet = false;
139 bool m_workflowArnHasBeenSet = false;
140 bool m_createdAtHasBeenSet = false;
141 bool m_updatedAtHasBeenSet = false;
142 bool m_resolutionTypeHasBeenSet = false;
143};
144
145} // namespace Model
146} // namespace EntityResolution
147} // namespace Aws
MatchingWorkflowSummary & WithWorkflowArn(WorkflowArnT &&value)
MatchingWorkflowSummary & WithResolutionType(ResolutionType value)
AWS_ENTITYRESOLUTION_API MatchingWorkflowSummary()=default
AWS_ENTITYRESOLUTION_API MatchingWorkflowSummary & operator=(Aws::Utils::Json::JsonView jsonValue)
MatchingWorkflowSummary & WithUpdatedAt(UpdatedAtT &&value)
AWS_ENTITYRESOLUTION_API Aws::Utils::Json::JsonValue Jsonize() const
MatchingWorkflowSummary & WithWorkflowName(WorkflowNameT &&value)
AWS_ENTITYRESOLUTION_API MatchingWorkflowSummary(Aws::Utils::Json::JsonView jsonValue)
MatchingWorkflowSummary & WithCreatedAt(CreatedAtT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue