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

See Also:

AWS * API Reference

*/ class GetSatelliteRequest : public GroundStationRequest { public: AWS_GROUNDSTATION_API GetSatelliteRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "GetSatellite"; } AWS_GROUNDSTATION_API Aws::String SerializePayload() const override; /** *

UUID of a satellite.

*/ inline const Aws::String& GetSatelliteId() const{ return m_satelliteId; } /** *

UUID of a satellite.

*/ inline bool SatelliteIdHasBeenSet() const { return m_satelliteIdHasBeenSet; } /** *

UUID of a satellite.

*/ inline void SetSatelliteId(const Aws::String& value) { m_satelliteIdHasBeenSet = true; m_satelliteId = value; } /** *

UUID of a satellite.

*/ inline void SetSatelliteId(Aws::String&& value) { m_satelliteIdHasBeenSet = true; m_satelliteId = std::move(value); } /** *

UUID of a satellite.

*/ inline void SetSatelliteId(const char* value) { m_satelliteIdHasBeenSet = true; m_satelliteId.assign(value); } /** *

UUID of a satellite.

*/ inline GetSatelliteRequest& WithSatelliteId(const Aws::String& value) { SetSatelliteId(value); return *this;} /** *

UUID of a satellite.

*/ inline GetSatelliteRequest& WithSatelliteId(Aws::String&& value) { SetSatelliteId(std::move(value)); return *this;} /** *

UUID of a satellite.

*/ inline GetSatelliteRequest& WithSatelliteId(const char* value) { SetSatelliteId(value); return *this;} private: Aws::String m_satelliteId; bool m_satelliteIdHasBeenSet = false; }; } // namespace Model } // namespace GroundStation } // namespace Aws