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

The connection endpoint for an Amazon Redshift cluster.

See * Also:

AWS * API Reference

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

The DNS address of the cluster.

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

The DNS address of the cluster.

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

The DNS address of the cluster.

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

The DNS address of the cluster.

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

The DNS address of the cluster.

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

The DNS address of the cluster.

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

The DNS address of the cluster.

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

The DNS address of the cluster.

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

The port that the database engine listens on.

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

The port that the database engine listens on.

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

The port that the database engine listens on.

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

The port that the database engine listens on.

*/ inline AwsRedshiftClusterEndpoint& 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 SecurityHub } // namespace Aws