AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GetAutoMergingPreviewRequest.h
1
6#pragma once
7#include <aws/customer-profiles/CustomerProfiles_EXPORTS.h>
8#include <aws/customer-profiles/CustomerProfilesRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/customer-profiles/model/Consolidation.h>
11#include <aws/customer-profiles/model/ConflictResolution.h>
12#include <utility>
13
14namespace Aws
15{
16namespace CustomerProfiles
17{
18namespace Model
19{
20
24 {
25 public:
26 AWS_CUSTOMERPROFILES_API GetAutoMergingPreviewRequest();
27
28 // Service request name is the Operation name which will send this request out,
29 // each operation should has unique request name, so that we can get operation's name from this request.
30 // Note: this is not true for response, multiple operations may have the same response name,
31 // so we can not get operation's name from response.
32 inline virtual const char* GetServiceRequestName() const override { return "GetAutoMergingPreview"; }
33
34 AWS_CUSTOMERPROFILES_API Aws::String SerializePayload() const override;
35
36
38
41 inline const Aws::String& GetDomainName() const{ return m_domainName; }
42 inline bool DomainNameHasBeenSet() const { return m_domainNameHasBeenSet; }
43 inline void SetDomainName(const Aws::String& value) { m_domainNameHasBeenSet = true; m_domainName = value; }
44 inline void SetDomainName(Aws::String&& value) { m_domainNameHasBeenSet = true; m_domainName = std::move(value); }
45 inline void SetDomainName(const char* value) { m_domainNameHasBeenSet = true; m_domainName.assign(value); }
46 inline GetAutoMergingPreviewRequest& WithDomainName(const Aws::String& value) { SetDomainName(value); return *this;}
47 inline GetAutoMergingPreviewRequest& WithDomainName(Aws::String&& value) { SetDomainName(std::move(value)); return *this;}
48 inline GetAutoMergingPreviewRequest& WithDomainName(const char* value) { SetDomainName(value); return *this;}
50
52
55 inline const Consolidation& GetConsolidation() const{ return m_consolidation; }
56 inline bool ConsolidationHasBeenSet() const { return m_consolidationHasBeenSet; }
57 inline void SetConsolidation(const Consolidation& value) { m_consolidationHasBeenSet = true; m_consolidation = value; }
58 inline void SetConsolidation(Consolidation&& value) { m_consolidationHasBeenSet = true; m_consolidation = std::move(value); }
60 inline GetAutoMergingPreviewRequest& WithConsolidation(Consolidation&& value) { SetConsolidation(std::move(value)); return *this;}
62
64
68 inline const ConflictResolution& GetConflictResolution() const{ return m_conflictResolution; }
69 inline bool ConflictResolutionHasBeenSet() const { return m_conflictResolutionHasBeenSet; }
70 inline void SetConflictResolution(const ConflictResolution& value) { m_conflictResolutionHasBeenSet = true; m_conflictResolution = value; }
71 inline void SetConflictResolution(ConflictResolution&& value) { m_conflictResolutionHasBeenSet = true; m_conflictResolution = std::move(value); }
75
77
81 inline double GetMinAllowedConfidenceScoreForMerging() const{ return m_minAllowedConfidenceScoreForMerging; }
82 inline bool MinAllowedConfidenceScoreForMergingHasBeenSet() const { return m_minAllowedConfidenceScoreForMergingHasBeenSet; }
83 inline void SetMinAllowedConfidenceScoreForMerging(double value) { m_minAllowedConfidenceScoreForMergingHasBeenSet = true; m_minAllowedConfidenceScoreForMerging = value; }
86 private:
87
88 Aws::String m_domainName;
89 bool m_domainNameHasBeenSet = false;
90
91 Consolidation m_consolidation;
92 bool m_consolidationHasBeenSet = false;
93
94 ConflictResolution m_conflictResolution;
95 bool m_conflictResolutionHasBeenSet = false;
96
97 double m_minAllowedConfidenceScoreForMerging;
98 bool m_minAllowedConfidenceScoreForMergingHasBeenSet = false;
99 };
100
101} // namespace Model
102} // namespace CustomerProfiles
103} // namespace Aws
GetAutoMergingPreviewRequest & WithConflictResolution(ConflictResolution &&value)
GetAutoMergingPreviewRequest & WithMinAllowedConfidenceScoreForMerging(double value)
GetAutoMergingPreviewRequest & WithDomainName(Aws::String &&value)
GetAutoMergingPreviewRequest & WithDomainName(const Aws::String &value)
GetAutoMergingPreviewRequest & WithConsolidation(const Consolidation &value)
GetAutoMergingPreviewRequest & WithDomainName(const char *value)
AWS_CUSTOMERPROFILES_API Aws::String SerializePayload() const override
GetAutoMergingPreviewRequest & WithConflictResolution(const ConflictResolution &value)
GetAutoMergingPreviewRequest & WithConsolidation(Consolidation &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String