AWS SDK for C++

AWS SDK for C++ Version 1.11.644

Loading...
Searching...
No Matches
MatchingWorkflowSummary.h
1
6#pragma once
7#include <aws/entityresolution/EntityResolution_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/DateTime.h>
10#include <aws/entityresolution/model/ResolutionType.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Utils
16{
17namespace Json
18{
19 class JsonValue;
20 class JsonView;
21} // namespace Json
22} // namespace Utils
23namespace EntityResolution
24{
25namespace Model
26{
27
37 {
38 public:
39 AWS_ENTITYRESOLUTION_API MatchingWorkflowSummary() = default;
40 AWS_ENTITYRESOLUTION_API MatchingWorkflowSummary(Aws::Utils::Json::JsonView jsonValue);
41 AWS_ENTITYRESOLUTION_API MatchingWorkflowSummary& operator=(Aws::Utils::Json::JsonView jsonValue);
42 AWS_ENTITYRESOLUTION_API Aws::Utils::Json::JsonValue Jsonize() const;
43
44
46
49 inline const Aws::String& GetWorkflowName() const { return m_workflowName; }
50 inline bool WorkflowNameHasBeenSet() const { return m_workflowNameHasBeenSet; }
51 template<typename WorkflowNameT = Aws::String>
52 void SetWorkflowName(WorkflowNameT&& value) { m_workflowNameHasBeenSet = true; m_workflowName = std::forward<WorkflowNameT>(value); }
53 template<typename WorkflowNameT = Aws::String>
54 MatchingWorkflowSummary& WithWorkflowName(WorkflowNameT&& value) { SetWorkflowName(std::forward<WorkflowNameT>(value)); return *this;}
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) { m_workflowArnHasBeenSet = true; m_workflowArn = std::forward<WorkflowArnT>(value); }
66 template<typename WorkflowArnT = Aws::String>
67 MatchingWorkflowSummary& WithWorkflowArn(WorkflowArnT&& value) { SetWorkflowArn(std::forward<WorkflowArnT>(value)); return *this;}
69
71
74 inline const Aws::Utils::DateTime& GetCreatedAt() const { return m_createdAt; }
75 inline bool CreatedAtHasBeenSet() const { return m_createdAtHasBeenSet; }
76 template<typename CreatedAtT = Aws::Utils::DateTime>
77 void SetCreatedAt(CreatedAtT&& value) { m_createdAtHasBeenSet = true; m_createdAt = std::forward<CreatedAtT>(value); }
78 template<typename CreatedAtT = Aws::Utils::DateTime>
79 MatchingWorkflowSummary& WithCreatedAt(CreatedAtT&& value) { SetCreatedAt(std::forward<CreatedAtT>(value)); return *this;}
81
83
86 inline const Aws::Utils::DateTime& GetUpdatedAt() const { return m_updatedAt; }
87 inline bool UpdatedAtHasBeenSet() const { return m_updatedAtHasBeenSet; }
88 template<typename UpdatedAtT = Aws::Utils::DateTime>
89 void SetUpdatedAt(UpdatedAtT&& value) { m_updatedAtHasBeenSet = true; m_updatedAt = std::forward<UpdatedAtT>(value); }
90 template<typename UpdatedAtT = Aws::Utils::DateTime>
91 MatchingWorkflowSummary& WithUpdatedAt(UpdatedAtT&& value) { SetUpdatedAt(std::forward<UpdatedAtT>(value)); return *this;}
93
95
99 inline ResolutionType GetResolutionType() const { return m_resolutionType; }
100 inline bool ResolutionTypeHasBeenSet() const { return m_resolutionTypeHasBeenSet; }
101 inline void SetResolutionType(ResolutionType value) { m_resolutionTypeHasBeenSet = true; m_resolutionType = value; }
104 private:
105
106 Aws::String m_workflowName;
107 bool m_workflowNameHasBeenSet = false;
108
109 Aws::String m_workflowArn;
110 bool m_workflowArnHasBeenSet = false;
111
112 Aws::Utils::DateTime m_createdAt{};
113 bool m_createdAtHasBeenSet = false;
114
115 Aws::Utils::DateTime m_updatedAt{};
116 bool m_updatedAtHasBeenSet = false;
117
118 ResolutionType m_resolutionType{ResolutionType::NOT_SET};
119 bool m_resolutionTypeHasBeenSet = false;
120 };
121
122} // namespace Model
123} // namespace EntityResolution
124} // 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