/** * 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 { /** */ class DeleteEphemerisRequest : public GroundStationRequest { public: AWS_GROUNDSTATION_API DeleteEphemerisRequest(); // 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 "DeleteEphemeris"; } AWS_GROUNDSTATION_API Aws::String SerializePayload() const override; /** *

The AWS Ground Station ephemeris ID.

*/ inline const Aws::String& GetEphemerisId() const{ return m_ephemerisId; } /** *

The AWS Ground Station ephemeris ID.

*/ inline bool EphemerisIdHasBeenSet() const { return m_ephemerisIdHasBeenSet; } /** *

The AWS Ground Station ephemeris ID.

*/ inline void SetEphemerisId(const Aws::String& value) { m_ephemerisIdHasBeenSet = true; m_ephemerisId = value; } /** *

The AWS Ground Station ephemeris ID.

*/ inline void SetEphemerisId(Aws::String&& value) { m_ephemerisIdHasBeenSet = true; m_ephemerisId = std::move(value); } /** *

The AWS Ground Station ephemeris ID.

*/ inline void SetEphemerisId(const char* value) { m_ephemerisIdHasBeenSet = true; m_ephemerisId.assign(value); } /** *

The AWS Ground Station ephemeris ID.

*/ inline DeleteEphemerisRequest& WithEphemerisId(const Aws::String& value) { SetEphemerisId(value); return *this;} /** *

The AWS Ground Station ephemeris ID.

*/ inline DeleteEphemerisRequest& WithEphemerisId(Aws::String&& value) { SetEphemerisId(std::move(value)); return *this;} /** *

The AWS Ground Station ephemeris ID.

*/ inline DeleteEphemerisRequest& WithEphemerisId(const char* value) { SetEphemerisId(value); return *this;} private: Aws::String m_ephemerisId; bool m_ephemerisIdHasBeenSet = false; }; } // namespace Model } // namespace GroundStation } // namespace Aws