/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace CustomerProfiles { namespace Model { class GetAutoMergingPreviewResult { public: AWS_CUSTOMERPROFILES_API GetAutoMergingPreviewResult(); AWS_CUSTOMERPROFILES_API GetAutoMergingPreviewResult(const Aws::AmazonWebServiceResult& result); AWS_CUSTOMERPROFILES_API GetAutoMergingPreviewResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The unique name of the domain.

*/ inline const Aws::String& GetDomainName() const{ return m_domainName; } /** *

The unique name of the domain.

*/ inline void SetDomainName(const Aws::String& value) { m_domainName = value; } /** *

The unique name of the domain.

*/ inline void SetDomainName(Aws::String&& value) { m_domainName = std::move(value); } /** *

The unique name of the domain.

*/ inline void SetDomainName(const char* value) { m_domainName.assign(value); } /** *

The unique name of the domain.

*/ inline GetAutoMergingPreviewResult& WithDomainName(const Aws::String& value) { SetDomainName(value); return *this;} /** *

The unique name of the domain.

*/ inline GetAutoMergingPreviewResult& WithDomainName(Aws::String&& value) { SetDomainName(std::move(value)); return *this;} /** *

The unique name of the domain.

*/ inline GetAutoMergingPreviewResult& WithDomainName(const char* value) { SetDomainName(value); return *this;} /** *

The number of match groups in the domain that have been reviewed in this * preview dry run.

*/ inline long long GetNumberOfMatchesInSample() const{ return m_numberOfMatchesInSample; } /** *

The number of match groups in the domain that have been reviewed in this * preview dry run.

*/ inline void SetNumberOfMatchesInSample(long long value) { m_numberOfMatchesInSample = value; } /** *

The number of match groups in the domain that have been reviewed in this * preview dry run.

*/ inline GetAutoMergingPreviewResult& WithNumberOfMatchesInSample(long long value) { SetNumberOfMatchesInSample(value); return *this;} /** *

The number of profiles found in this preview dry run.

*/ inline long long GetNumberOfProfilesInSample() const{ return m_numberOfProfilesInSample; } /** *

The number of profiles found in this preview dry run.

*/ inline void SetNumberOfProfilesInSample(long long value) { m_numberOfProfilesInSample = value; } /** *

The number of profiles found in this preview dry run.

*/ inline GetAutoMergingPreviewResult& WithNumberOfProfilesInSample(long long value) { SetNumberOfProfilesInSample(value); return *this;} /** *

The number of profiles that would be merged if this wasn't a preview dry * run.

*/ inline long long GetNumberOfProfilesWillBeMerged() const{ return m_numberOfProfilesWillBeMerged; } /** *

The number of profiles that would be merged if this wasn't a preview dry * run.

*/ inline void SetNumberOfProfilesWillBeMerged(long long value) { m_numberOfProfilesWillBeMerged = value; } /** *

The number of profiles that would be merged if this wasn't a preview dry * run.

*/ inline GetAutoMergingPreviewResult& WithNumberOfProfilesWillBeMerged(long long value) { SetNumberOfProfilesWillBeMerged(value); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline GetAutoMergingPreviewResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetAutoMergingPreviewResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetAutoMergingPreviewResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_domainName; long long m_numberOfMatchesInSample; long long m_numberOfProfilesInSample; long long m_numberOfProfilesWillBeMerged; Aws::String m_requestId; }; } // namespace Model } // namespace CustomerProfiles } // namespace Aws