AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
GetConfigRequest.h
1
6#pragma once
7#include <aws/groundstation/GroundStation_EXPORTS.h>
8#include <aws/groundstation/GroundStationRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/groundstation/model/ConfigCapabilityType.h>
11#include <utility>
12
13namespace Aws
14{
15namespace GroundStation
16{
17namespace Model
18{
19
26 {
27 public:
28 AWS_GROUNDSTATION_API GetConfigRequest() = default;
29
30 // Service request name is the Operation name which will send this request out,
31 // each operation should has unique request name, so that we can get operation's name from this request.
32 // Note: this is not true for response, multiple operations may have the same response name,
33 // so we can not get operation's name from response.
34 inline virtual const char* GetServiceRequestName() const override { return "GetConfig"; }
35
36 AWS_GROUNDSTATION_API Aws::String SerializePayload() const override;
37
38
40
43 inline const Aws::String& GetConfigId() const { return m_configId; }
44 inline bool ConfigIdHasBeenSet() const { return m_configIdHasBeenSet; }
45 template<typename ConfigIdT = Aws::String>
46 void SetConfigId(ConfigIdT&& value) { m_configIdHasBeenSet = true; m_configId = std::forward<ConfigIdT>(value); }
47 template<typename ConfigIdT = Aws::String>
48 GetConfigRequest& WithConfigId(ConfigIdT&& value) { SetConfigId(std::forward<ConfigIdT>(value)); return *this;}
50
52
55 inline ConfigCapabilityType GetConfigType() const { return m_configType; }
56 inline bool ConfigTypeHasBeenSet() const { return m_configTypeHasBeenSet; }
57 inline void SetConfigType(ConfigCapabilityType value) { m_configTypeHasBeenSet = true; m_configType = value; }
58 inline GetConfigRequest& WithConfigType(ConfigCapabilityType value) { SetConfigType(value); return *this;}
60 private:
61
62 Aws::String m_configId;
63 bool m_configIdHasBeenSet = false;
64
66 bool m_configTypeHasBeenSet = false;
67 };
68
69} // namespace Model
70} // namespace GroundStation
71} // namespace Aws
GetConfigRequest & WithConfigId(ConfigIdT &&value)
GetConfigRequest & WithConfigType(ConfigCapabilityType value)
void SetConfigType(ConfigCapabilityType value)
virtual const char * GetServiceRequestName() const override
AWS_GROUNDSTATION_API GetConfigRequest()=default
ConfigCapabilityType GetConfigType() const
AWS_GROUNDSTATION_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String