/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace Appflow { namespace Model { /** *

The properties that are applied when Amazon Connect Customer Profiles is * used as a destination.

See Also:

AWS * API Reference

*/ class CustomerProfilesDestinationProperties { public: AWS_APPFLOW_API CustomerProfilesDestinationProperties(); AWS_APPFLOW_API CustomerProfilesDestinationProperties(Aws::Utils::Json::JsonView jsonValue); AWS_APPFLOW_API CustomerProfilesDestinationProperties& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_APPFLOW_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The unique name of the Amazon Connect Customer Profiles domain.

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

The unique name of the Amazon Connect Customer Profiles domain.

*/ inline bool DomainNameHasBeenSet() const { return m_domainNameHasBeenSet; } /** *

The unique name of the Amazon Connect Customer Profiles domain.

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

The unique name of the Amazon Connect Customer Profiles domain.

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

The unique name of the Amazon Connect Customer Profiles domain.

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

The unique name of the Amazon Connect Customer Profiles domain.

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

The unique name of the Amazon Connect Customer Profiles domain.

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

The unique name of the Amazon Connect Customer Profiles domain.

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

The object specified in the Amazon Connect Customer Profiles flow * destination.

*/ inline const Aws::String& GetObjectTypeName() const{ return m_objectTypeName; } /** *

The object specified in the Amazon Connect Customer Profiles flow * destination.

*/ inline bool ObjectTypeNameHasBeenSet() const { return m_objectTypeNameHasBeenSet; } /** *

The object specified in the Amazon Connect Customer Profiles flow * destination.

*/ inline void SetObjectTypeName(const Aws::String& value) { m_objectTypeNameHasBeenSet = true; m_objectTypeName = value; } /** *

The object specified in the Amazon Connect Customer Profiles flow * destination.

*/ inline void SetObjectTypeName(Aws::String&& value) { m_objectTypeNameHasBeenSet = true; m_objectTypeName = std::move(value); } /** *

The object specified in the Amazon Connect Customer Profiles flow * destination.

*/ inline void SetObjectTypeName(const char* value) { m_objectTypeNameHasBeenSet = true; m_objectTypeName.assign(value); } /** *

The object specified in the Amazon Connect Customer Profiles flow * destination.

*/ inline CustomerProfilesDestinationProperties& WithObjectTypeName(const Aws::String& value) { SetObjectTypeName(value); return *this;} /** *

The object specified in the Amazon Connect Customer Profiles flow * destination.

*/ inline CustomerProfilesDestinationProperties& WithObjectTypeName(Aws::String&& value) { SetObjectTypeName(std::move(value)); return *this;} /** *

The object specified in the Amazon Connect Customer Profiles flow * destination.

*/ inline CustomerProfilesDestinationProperties& WithObjectTypeName(const char* value) { SetObjectTypeName(value); return *this;} private: Aws::String m_domainName; bool m_domainNameHasBeenSet = false; Aws::String m_objectTypeName; bool m_objectTypeNameHasBeenSet = false; }; } // namespace Model } // namespace Appflow } // namespace Aws