122 lines
3.7 KiB
C
122 lines
3.7 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 <aws/groundstation/model/ConfigCapabilityType.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/GetConfigRequest">AWS
|
|||
|
|
* API Reference</a></p>
|
|||
|
|
*/
|
|||
|
|
class AWS_GROUNDSTATION_API GetConfigRequest : public GroundStationRequest
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
GetConfigRequest();
|
|||
|
|
|
|||
|
|
// 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 "GetConfig"; }
|
|||
|
|
|
|||
|
|
Aws::String SerializePayload() const override;
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>UUID of a <code>Config</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetConfigId() const{ return m_configId; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>UUID of a <code>Config</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool ConfigIdHasBeenSet() const { return m_configIdHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>UUID of a <code>Config</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetConfigId(const Aws::String& value) { m_configIdHasBeenSet = true; m_configId = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>UUID of a <code>Config</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetConfigId(Aws::String&& value) { m_configIdHasBeenSet = true; m_configId = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>UUID of a <code>Config</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetConfigId(const char* value) { m_configIdHasBeenSet = true; m_configId.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>UUID of a <code>Config</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline GetConfigRequest& WithConfigId(const Aws::String& value) { SetConfigId(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>UUID of a <code>Config</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline GetConfigRequest& WithConfigId(Aws::String&& value) { SetConfigId(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>UUID of a <code>Config</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline GetConfigRequest& WithConfigId(const char* value) { SetConfigId(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Type of a <code>Config</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline const ConfigCapabilityType& GetConfigType() const{ return m_configType; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Type of a <code>Config</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool ConfigTypeHasBeenSet() const { return m_configTypeHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Type of a <code>Config</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetConfigType(const ConfigCapabilityType& value) { m_configTypeHasBeenSet = true; m_configType = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Type of a <code>Config</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetConfigType(ConfigCapabilityType&& value) { m_configTypeHasBeenSet = true; m_configType = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Type of a <code>Config</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline GetConfigRequest& WithConfigType(const ConfigCapabilityType& value) { SetConfigType(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Type of a <code>Config</code>.</p>
|
|||
|
|
*/
|
|||
|
|
inline GetConfigRequest& WithConfigType(ConfigCapabilityType&& value) { SetConfigType(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
Aws::String m_configId;
|
|||
|
|
bool m_configIdHasBeenSet;
|
|||
|
|
|
|||
|
|
ConfigCapabilityType m_configType;
|
|||
|
|
bool m_configTypeHasBeenSet;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace GroundStation
|
|||
|
|
} // namespace Aws
|