/** * 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 MemoryDB { namespace Model { /** *

Represents the information required for client programs to connect to the * cluster and its nodes.

See Also:

AWS * API Reference

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

The DNS hostname of the node.

*/ inline const Aws::String& GetAddress() const{ return m_address; } /** *

The DNS hostname of the node.

*/ inline bool AddressHasBeenSet() const { return m_addressHasBeenSet; } /** *

The DNS hostname of the node.

*/ inline void SetAddress(const Aws::String& value) { m_addressHasBeenSet = true; m_address = value; } /** *

The DNS hostname of the node.

*/ inline void SetAddress(Aws::String&& value) { m_addressHasBeenSet = true; m_address = std::move(value); } /** *

The DNS hostname of the node.

*/ inline void SetAddress(const char* value) { m_addressHasBeenSet = true; m_address.assign(value); } /** *

The DNS hostname of the node.

*/ inline Endpoint& WithAddress(const Aws::String& value) { SetAddress(value); return *this;} /** *

The DNS hostname of the node.

*/ inline Endpoint& WithAddress(Aws::String&& value) { SetAddress(std::move(value)); return *this;} /** *

The DNS hostname of the node.

*/ inline Endpoint& WithAddress(const char* value) { SetAddress(value); return *this;} /** *

The port number that the engine is listening on.

*/ inline int GetPort() const{ return m_port; } /** *

The port number that the engine is listening on.

*/ inline bool PortHasBeenSet() const { return m_portHasBeenSet; } /** *

The port number that the engine is listening on.

*/ inline void SetPort(int value) { m_portHasBeenSet = true; m_port = value; } /** *

The port number that the engine is listening on.

*/ inline Endpoint& WithPort(int value) { SetPort(value); return *this;} private: Aws::String m_address; bool m_addressHasBeenSet = false; int m_port; bool m_portHasBeenSet = false; }; } // namespace Model } // namespace MemoryDB } // namespace Aws