87 lines
2.5 KiB
C
87 lines
2.5 KiB
C
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
#include <aws/groundstation/GroundStation_EXPORTS.h>
|
|||
|
|
#include <aws/groundstation/GroundStationRequest.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace GroundStation
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p/><p><h3>See Also:</h3> <a
|
|||
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/GetSatelliteRequest">AWS
|
|||
|
|
* API Reference</a></p>
|
|||
|
|
*/
|
|||
|
|
class AWS_GROUNDSTATION_API GetSatelliteRequest : public GroundStationRequest
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
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::String SerializePayload() const override;
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>UUID of a satellite.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetSatelliteId() const{ return m_satelliteId; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>UUID of a satellite.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool SatelliteIdHasBeenSet() const { return m_satelliteIdHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>UUID of a satellite.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetSatelliteId(const Aws::String& value) { m_satelliteIdHasBeenSet = true; m_satelliteId = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>UUID of a satellite.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetSatelliteId(Aws::String&& value) { m_satelliteIdHasBeenSet = true; m_satelliteId = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>UUID of a satellite.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetSatelliteId(const char* value) { m_satelliteIdHasBeenSet = true; m_satelliteId.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>UUID of a satellite.</p>
|
|||
|
|
*/
|
|||
|
|
inline GetSatelliteRequest& WithSatelliteId(const Aws::String& value) { SetSatelliteId(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>UUID of a satellite.</p>
|
|||
|
|
*/
|
|||
|
|
inline GetSatelliteRequest& WithSatelliteId(Aws::String&& value) { SetSatelliteId(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>UUID of a satellite.</p>
|
|||
|
|
*/
|
|||
|
|
inline GetSatelliteRequest& WithSatelliteId(const char* value) { SetSatelliteId(value); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
Aws::String m_satelliteId;
|
|||
|
|
bool m_satelliteIdHasBeenSet;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace GroundStation
|
|||
|
|
} // namespace Aws
|