AWS SDK for C++

AWS SDK for C++ Version 1.11.606

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
36 {
37 public:
38 AWS_ENTITYRESOLUTION_API MatchingWorkflowSummary() = default;
39 AWS_ENTITYRESOLUTION_API MatchingWorkflowSummary(Aws::Utils::Json::JsonView jsonValue);
40 AWS_ENTITYRESOLUTION_API MatchingWorkflowSummary& operator=(Aws::Utils::Json::JsonView jsonValue);
41 AWS_ENTITYRESOLUTION_API Aws::Utils::Json::JsonValue Jsonize() const;
42
43
45
48 inline const Aws::String& GetWorkflowName() const { return m_workflowName; }
49 inline bool WorkflowNameHasBeenSet() const { return m_workflowNameHasBeenSet; }
50 template<typename WorkflowNameT = Aws::String>
51 void SetWorkflowName(WorkflowNameT&& value) { m_workflowNameHasBeenSet = true; m_workflowName = std::forward<WorkflowNameT>(value); }
52 template<typename WorkflowNameT = Aws::String>
53 MatchingWorkflowSummary& WithWorkflowName(WorkflowNameT&& value) { SetWorkflowName(std::forward<WorkflowNameT>(value)); return *this;}
55
57
61 inline const Aws::String& GetWorkflowArn() const { return m_workflowArn; }
62 inline bool WorkflowArnHasBeenSet() const { return m_workflowArnHasBeenSet; }
63 template<typename WorkflowArnT = Aws::String>
64 void SetWorkflowArn(WorkflowArnT&& value) { m_workflowArnHasBeenSet = true; m_workflowArn = std::forward<WorkflowArnT>(value); }
65 template<typename WorkflowArnT = Aws::String>
66 MatchingWorkflowSummary& WithWorkflowArn(WorkflowArnT&& value) { SetWorkflowArn(std::forward<WorkflowArnT>(value)); return *this;}
68
70
73 inline const Aws::Utils::DateTime& GetCreatedAt() const { return m_createdAt; }
74 inline bool CreatedAtHasBeenSet() const { return m_createdAtHasBeenSet; }
75 template<typename CreatedAtT = Aws::Utils::DateTime>
76 void SetCreatedAt(CreatedAtT&& value) { m_createdAtHasBeenSet = true; m_createdAt = std::forward<CreatedAtT>(value); }
77 template<typename CreatedAtT = Aws::Utils::DateTime>
78 MatchingWorkflowSummary& WithCreatedAt(CreatedAtT&& value) { SetCreatedAt(std::forward<CreatedAtT>(value)); return *this;}
80
82
85 inline const Aws::Utils::DateTime& GetUpdatedAt() const { return m_updatedAt; }
86 inline bool UpdatedAtHasBeenSet() const { return m_updatedAtHasBeenSet; }
87 template<typename UpdatedAtT = Aws::Utils::DateTime>
88 void SetUpdatedAt(UpdatedAtT&& value) { m_updatedAtHasBeenSet = true; m_updatedAt = std::forward<UpdatedAtT>(value); }
89 template<typename UpdatedAtT = Aws::Utils::DateTime>
90 MatchingWorkflowSummary& WithUpdatedAt(UpdatedAtT&& value) { SetUpdatedAt(std::forward<UpdatedAtT>(value)); return *this;}
92
94
98 inline ResolutionType GetResolutionType() const { return m_resolutionType; }
99 inline bool ResolutionTypeHasBeenSet() const { return m_resolutionTypeHasBeenSet; }
100 inline void SetResolutionType(ResolutionType value) { m_resolutionTypeHasBeenSet = true; m_resolutionType = value; }
103 private:
104
105 Aws::String m_workflowName;
106 bool m_workflowNameHasBeenSet = false;
107
108 Aws::String m_workflowArn;
109 bool m_workflowArnHasBeenSet = false;
110
111 Aws::Utils::DateTime m_createdAt{};
112 bool m_createdAtHasBeenSet = false;
113
114 Aws::Utils::DateTime m_updatedAt{};
115 bool m_updatedAtHasBeenSet = false;
116
117 ResolutionType m_resolutionType{ResolutionType::NOT_SET};
118 bool m_resolutionTypeHasBeenSet = false;
119 };
120
121} // namespace Model
122} // namespace EntityResolution
123} // 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