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

Information about the dataflow endpoint Config.

See * Also:

AWS * API Reference

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

Name of a dataflow endpoint.

*/ inline const Aws::String& GetDataflowEndpointName() const{ return m_dataflowEndpointName; } /** *

Name of a dataflow endpoint.

*/ inline bool DataflowEndpointNameHasBeenSet() const { return m_dataflowEndpointNameHasBeenSet; } /** *

Name of a dataflow endpoint.

*/ inline void SetDataflowEndpointName(const Aws::String& value) { m_dataflowEndpointNameHasBeenSet = true; m_dataflowEndpointName = value; } /** *

Name of a dataflow endpoint.

*/ inline void SetDataflowEndpointName(Aws::String&& value) { m_dataflowEndpointNameHasBeenSet = true; m_dataflowEndpointName = std::move(value); } /** *

Name of a dataflow endpoint.

*/ inline void SetDataflowEndpointName(const char* value) { m_dataflowEndpointNameHasBeenSet = true; m_dataflowEndpointName.assign(value); } /** *

Name of a dataflow endpoint.

*/ inline DataflowEndpointConfig& WithDataflowEndpointName(const Aws::String& value) { SetDataflowEndpointName(value); return *this;} /** *

Name of a dataflow endpoint.

*/ inline DataflowEndpointConfig& WithDataflowEndpointName(Aws::String&& value) { SetDataflowEndpointName(std::move(value)); return *this;} /** *

Name of a dataflow endpoint.

*/ inline DataflowEndpointConfig& WithDataflowEndpointName(const char* value) { SetDataflowEndpointName(value); return *this;} /** *

Region of a dataflow endpoint.

*/ inline const Aws::String& GetDataflowEndpointRegion() const{ return m_dataflowEndpointRegion; } /** *

Region of a dataflow endpoint.

*/ inline bool DataflowEndpointRegionHasBeenSet() const { return m_dataflowEndpointRegionHasBeenSet; } /** *

Region of a dataflow endpoint.

*/ inline void SetDataflowEndpointRegion(const Aws::String& value) { m_dataflowEndpointRegionHasBeenSet = true; m_dataflowEndpointRegion = value; } /** *

Region of a dataflow endpoint.

*/ inline void SetDataflowEndpointRegion(Aws::String&& value) { m_dataflowEndpointRegionHasBeenSet = true; m_dataflowEndpointRegion = std::move(value); } /** *

Region of a dataflow endpoint.

*/ inline void SetDataflowEndpointRegion(const char* value) { m_dataflowEndpointRegionHasBeenSet = true; m_dataflowEndpointRegion.assign(value); } /** *

Region of a dataflow endpoint.

*/ inline DataflowEndpointConfig& WithDataflowEndpointRegion(const Aws::String& value) { SetDataflowEndpointRegion(value); return *this;} /** *

Region of a dataflow endpoint.

*/ inline DataflowEndpointConfig& WithDataflowEndpointRegion(Aws::String&& value) { SetDataflowEndpointRegion(std::move(value)); return *this;} /** *

Region of a dataflow endpoint.

*/ inline DataflowEndpointConfig& WithDataflowEndpointRegion(const char* value) { SetDataflowEndpointRegion(value); return *this;} private: Aws::String m_dataflowEndpointName; bool m_dataflowEndpointNameHasBeenSet = false; Aws::String m_dataflowEndpointRegion; bool m_dataflowEndpointRegionHasBeenSet = false; }; } // namespace Model } // namespace GroundStation } // namespace Aws