/** * 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 ground station data.

See Also:

AWS * API Reference

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

UUID of a ground station.

*/ inline const Aws::String& GetGroundStationId() const{ return m_groundStationId; } /** *

UUID of a ground station.

*/ inline bool GroundStationIdHasBeenSet() const { return m_groundStationIdHasBeenSet; } /** *

UUID of a ground station.

*/ inline void SetGroundStationId(const Aws::String& value) { m_groundStationIdHasBeenSet = true; m_groundStationId = value; } /** *

UUID of a ground station.

*/ inline void SetGroundStationId(Aws::String&& value) { m_groundStationIdHasBeenSet = true; m_groundStationId = std::move(value); } /** *

UUID of a ground station.

*/ inline void SetGroundStationId(const char* value) { m_groundStationIdHasBeenSet = true; m_groundStationId.assign(value); } /** *

UUID of a ground station.

*/ inline GroundStationData& WithGroundStationId(const Aws::String& value) { SetGroundStationId(value); return *this;} /** *

UUID of a ground station.

*/ inline GroundStationData& WithGroundStationId(Aws::String&& value) { SetGroundStationId(std::move(value)); return *this;} /** *

UUID of a ground station.

*/ inline GroundStationData& WithGroundStationId(const char* value) { SetGroundStationId(value); return *this;} /** *

Name of a ground station.

*/ inline const Aws::String& GetGroundStationName() const{ return m_groundStationName; } /** *

Name of a ground station.

*/ inline bool GroundStationNameHasBeenSet() const { return m_groundStationNameHasBeenSet; } /** *

Name of a ground station.

*/ inline void SetGroundStationName(const Aws::String& value) { m_groundStationNameHasBeenSet = true; m_groundStationName = value; } /** *

Name of a ground station.

*/ inline void SetGroundStationName(Aws::String&& value) { m_groundStationNameHasBeenSet = true; m_groundStationName = std::move(value); } /** *

Name of a ground station.

*/ inline void SetGroundStationName(const char* value) { m_groundStationNameHasBeenSet = true; m_groundStationName.assign(value); } /** *

Name of a ground station.

*/ inline GroundStationData& WithGroundStationName(const Aws::String& value) { SetGroundStationName(value); return *this;} /** *

Name of a ground station.

*/ inline GroundStationData& WithGroundStationName(Aws::String&& value) { SetGroundStationName(std::move(value)); return *this;} /** *

Name of a ground station.

*/ inline GroundStationData& WithGroundStationName(const char* value) { SetGroundStationName(value); return *this;} /** *

Ground station Region.

*/ inline const Aws::String& GetRegion() const{ return m_region; } /** *

Ground station Region.

*/ inline bool RegionHasBeenSet() const { return m_regionHasBeenSet; } /** *

Ground station Region.

*/ inline void SetRegion(const Aws::String& value) { m_regionHasBeenSet = true; m_region = value; } /** *

Ground station Region.

*/ inline void SetRegion(Aws::String&& value) { m_regionHasBeenSet = true; m_region = std::move(value); } /** *

Ground station Region.

*/ inline void SetRegion(const char* value) { m_regionHasBeenSet = true; m_region.assign(value); } /** *

Ground station Region.

*/ inline GroundStationData& WithRegion(const Aws::String& value) { SetRegion(value); return *this;} /** *

Ground station Region.

*/ inline GroundStationData& WithRegion(Aws::String&& value) { SetRegion(std::move(value)); return *this;} /** *

Ground station Region.

*/ inline GroundStationData& WithRegion(const char* value) { SetRegion(value); return *this;} private: Aws::String m_groundStationId; bool m_groundStationIdHasBeenSet; Aws::String m_groundStationName; bool m_groundStationNameHasBeenSet; Aws::String m_region; bool m_regionHasBeenSet; }; } // namespace Model } // namespace GroundStation } // namespace Aws