AWS SDK for C++

AWS SDK for C++ Version 1.11.754

Loading...
Searching...
No Matches
JobStats.h
1
6#pragma once
7#include <aws/customer-profiles/CustomerProfiles_EXPORTS.h>
8
9namespace Aws {
10namespace Utils {
11namespace Json {
12class JsonValue;
13class JsonView;
14} // namespace Json
15} // namespace Utils
16namespace CustomerProfiles {
17namespace Model {
18
24class JobStats {
25 public:
26 AWS_CUSTOMERPROFILES_API JobStats() = default;
27 AWS_CUSTOMERPROFILES_API JobStats(Aws::Utils::Json::JsonView jsonValue);
28 AWS_CUSTOMERPROFILES_API JobStats& operator=(Aws::Utils::Json::JsonView jsonValue);
29 AWS_CUSTOMERPROFILES_API Aws::Utils::Json::JsonValue Jsonize() const;
30
32
35 inline long long GetNumberOfProfilesReviewed() const { return m_numberOfProfilesReviewed; }
36 inline bool NumberOfProfilesReviewedHasBeenSet() const { return m_numberOfProfilesReviewedHasBeenSet; }
37 inline void SetNumberOfProfilesReviewed(long long value) {
38 m_numberOfProfilesReviewedHasBeenSet = true;
39 m_numberOfProfilesReviewed = value;
40 }
41 inline JobStats& WithNumberOfProfilesReviewed(long long value) {
43 return *this;
44 }
46
48
51 inline long long GetNumberOfMatchesFound() const { return m_numberOfMatchesFound; }
52 inline bool NumberOfMatchesFoundHasBeenSet() const { return m_numberOfMatchesFoundHasBeenSet; }
53 inline void SetNumberOfMatchesFound(long long value) {
54 m_numberOfMatchesFoundHasBeenSet = true;
55 m_numberOfMatchesFound = value;
56 }
57 inline JobStats& WithNumberOfMatchesFound(long long value) {
59 return *this;
60 }
62
64
67 inline long long GetNumberOfMergesDone() const { return m_numberOfMergesDone; }
68 inline bool NumberOfMergesDoneHasBeenSet() const { return m_numberOfMergesDoneHasBeenSet; }
69 inline void SetNumberOfMergesDone(long long value) {
70 m_numberOfMergesDoneHasBeenSet = true;
71 m_numberOfMergesDone = value;
72 }
73 inline JobStats& WithNumberOfMergesDone(long long value) {
75 return *this;
76 }
78 private:
79 long long m_numberOfProfilesReviewed{0};
80
81 long long m_numberOfMatchesFound{0};
82
83 long long m_numberOfMergesDone{0};
84 bool m_numberOfProfilesReviewedHasBeenSet = false;
85 bool m_numberOfMatchesFoundHasBeenSet = false;
86 bool m_numberOfMergesDoneHasBeenSet = false;
87};
88
89} // namespace Model
90} // namespace CustomerProfiles
91} // namespace Aws
void SetNumberOfMergesDone(long long value)
Definition JobStats.h:69
void SetNumberOfProfilesReviewed(long long value)
Definition JobStats.h:37
JobStats & WithNumberOfMatchesFound(long long value)
Definition JobStats.h:57
JobStats & WithNumberOfProfilesReviewed(long long value)
Definition JobStats.h:41
AWS_CUSTOMERPROFILES_API JobStats()=default
long long GetNumberOfMatchesFound() const
Definition JobStats.h:51
bool NumberOfProfilesReviewedHasBeenSet() const
Definition JobStats.h:36
JobStats & WithNumberOfMergesDone(long long value)
Definition JobStats.h:73
AWS_CUSTOMERPROFILES_API JobStats & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_CUSTOMERPROFILES_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_CUSTOMERPROFILES_API JobStats(Aws::Utils::Json::JsonView jsonValue)
void SetNumberOfMatchesFound(long long value)
Definition JobStats.h:53
long long GetNumberOfMergesDone() const
Definition JobStats.h:67
long long GetNumberOfProfilesReviewed() const
Definition JobStats.h:35
Aws::Utils::Json::JsonValue JsonValue