/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the information required for client programs to connect to a cache
* node.See Also:
AWS
* API Reference
The DNS hostname of the cache node.
*/ inline const Aws::String& GetAddress() const{ return m_address; } /** *The DNS hostname of the cache node.
*/ inline bool AddressHasBeenSet() const { return m_addressHasBeenSet; } /** *The DNS hostname of the cache node.
*/ inline void SetAddress(const Aws::String& value) { m_addressHasBeenSet = true; m_address = value; } /** *The DNS hostname of the cache node.
*/ inline void SetAddress(Aws::String&& value) { m_addressHasBeenSet = true; m_address = std::move(value); } /** *The DNS hostname of the cache node.
*/ inline void SetAddress(const char* value) { m_addressHasBeenSet = true; m_address.assign(value); } /** *The DNS hostname of the cache node.
*/ inline Endpoint& WithAddress(const Aws::String& value) { SetAddress(value); return *this;} /** *The DNS hostname of the cache node.
*/ inline Endpoint& WithAddress(Aws::String&& value) { SetAddress(std::move(value)); return *this;} /** *The DNS hostname of the cache node.
*/ inline Endpoint& WithAddress(const char* value) { SetAddress(value); return *this;} /** *The port number that the cache engine is listening on.
*/ inline int GetPort() const{ return m_port; } /** *The port number that the cache engine is listening on.
*/ inline bool PortHasBeenSet() const { return m_portHasBeenSet; } /** *The port number that the cache engine is listening on.
*/ inline void SetPort(int value) { m_portHasBeenSet = true; m_port = value; } /** *The port number that the cache 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 ElastiCache } // namespace Aws