/**
* 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;} 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 ModifyEndpointResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline ModifyEndpointResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline ModifyEndpointResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Endpoint m_endpoint; Aws::String m_requestId; }; } // namespace Model } // namespace DatabaseMigrationService } // namespace Aws