/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace GroundStation { namespace Model { /** *

Information about the endpoint details.

See Also:

AWS * API Reference

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

A dataflow endpoint.

*/ inline const DataflowEndpoint& GetEndpoint() const{ return m_endpoint; } /** *

A dataflow endpoint.

*/ inline bool EndpointHasBeenSet() const { return m_endpointHasBeenSet; } /** *

A dataflow endpoint.

*/ inline void SetEndpoint(const DataflowEndpoint& value) { m_endpointHasBeenSet = true; m_endpoint = value; } /** *

A dataflow endpoint.

*/ inline void SetEndpoint(DataflowEndpoint&& value) { m_endpointHasBeenSet = true; m_endpoint = std::move(value); } /** *

A dataflow endpoint.

*/ inline EndpointDetails& WithEndpoint(const DataflowEndpoint& value) { SetEndpoint(value); return *this;} /** *

A dataflow endpoint.

*/ inline EndpointDetails& WithEndpoint(DataflowEndpoint&& value) { SetEndpoint(std::move(value)); return *this;} /** *

Endpoint security details.

*/ inline const SecurityDetails& GetSecurityDetails() const{ return m_securityDetails; } /** *

Endpoint security details.

*/ inline bool SecurityDetailsHasBeenSet() const { return m_securityDetailsHasBeenSet; } /** *

Endpoint security details.

*/ inline void SetSecurityDetails(const SecurityDetails& value) { m_securityDetailsHasBeenSet = true; m_securityDetails = value; } /** *

Endpoint security details.

*/ inline void SetSecurityDetails(SecurityDetails&& value) { m_securityDetailsHasBeenSet = true; m_securityDetails = std::move(value); } /** *

Endpoint security details.

*/ inline EndpointDetails& WithSecurityDetails(const SecurityDetails& value) { SetSecurityDetails(value); return *this;} /** *

Endpoint security details.

*/ inline EndpointDetails& WithSecurityDetails(SecurityDetails&& value) { SetSecurityDetails(std::move(value)); return *this;} private: DataflowEndpoint m_endpoint; bool m_endpointHasBeenSet; SecurityDetails m_securityDetails; bool m_securityDetailsHasBeenSet; }; } // namespace Model } // namespace GroundStation } // namespace Aws