/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include See Also:
AWS
* API Reference
The modified endpoint.
*/ inline const Endpoint& GetEndpoint() const{ return m_endpoint; } /** *The modified endpoint.
*/ inline void SetEndpoint(const Endpoint& value) { m_endpoint = value; } /** *The modified endpoint.
*/ inline void SetEndpoint(Endpoint&& value) { m_endpoint = std::move(value); } /** *The modified endpoint.
*/ inline ModifyEndpointResult& WithEndpoint(const Endpoint& value) { SetEndpoint(value); return *this;} /** *The modified endpoint.
*/ inline ModifyEndpointResult& WithEndpoint(Endpoint&& value) { SetEndpoint(std::move(value)); return *this;} private: Endpoint m_endpoint; }; } // namespace Model } // namespace DatabaseMigrationService } // namespace Aws