/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace CustomerProfiles { namespace Model { /** */ class DeleteIntegrationRequest : public CustomerProfilesRequest { public: AWS_CUSTOMERPROFILES_API DeleteIntegrationRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "DeleteIntegration"; } AWS_CUSTOMERPROFILES_API Aws::String SerializePayload() const override; /** *

The unique name of the domain.

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

The unique name of the domain.

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

The unique name of the domain.

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

The unique name of the domain.

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

The unique name of the domain.

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

The unique name of the domain.

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

The unique name of the domain.

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

The unique name of the domain.

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

The URI of the S3 bucket or any other type of data source.

*/ inline const Aws::String& GetUri() const{ return m_uri; } /** *

The URI of the S3 bucket or any other type of data source.

*/ inline bool UriHasBeenSet() const { return m_uriHasBeenSet; } /** *

The URI of the S3 bucket or any other type of data source.

*/ inline void SetUri(const Aws::String& value) { m_uriHasBeenSet = true; m_uri = value; } /** *

The URI of the S3 bucket or any other type of data source.

*/ inline void SetUri(Aws::String&& value) { m_uriHasBeenSet = true; m_uri = std::move(value); } /** *

The URI of the S3 bucket or any other type of data source.

*/ inline void SetUri(const char* value) { m_uriHasBeenSet = true; m_uri.assign(value); } /** *

The URI of the S3 bucket or any other type of data source.

*/ inline DeleteIntegrationRequest& WithUri(const Aws::String& value) { SetUri(value); return *this;} /** *

The URI of the S3 bucket or any other type of data source.

*/ inline DeleteIntegrationRequest& WithUri(Aws::String&& value) { SetUri(std::move(value)); return *this;} /** *

The URI of the S3 bucket or any other type of data source.

*/ inline DeleteIntegrationRequest& WithUri(const char* value) { SetUri(value); return *this;} private: Aws::String m_domainName; bool m_domainNameHasBeenSet = false; Aws::String m_uri; bool m_uriHasBeenSet = false; }; } // namespace Model } // namespace CustomerProfiles } // namespace Aws