AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DeleteConfigRequest.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 DeleteConfigRequest();
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 "DeleteConfig"; }
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 inline void SetConfigId(const Aws::String& value) { m_configIdHasBeenSet = true; m_configId = value; }
46 inline void SetConfigId(Aws::String&& value) { m_configIdHasBeenSet = true; m_configId = std::move(value); }
47 inline void SetConfigId(const char* value) { m_configIdHasBeenSet = true; m_configId.assign(value); }
48 inline DeleteConfigRequest& WithConfigId(const Aws::String& value) { SetConfigId(value); return *this;}
49 inline DeleteConfigRequest& WithConfigId(Aws::String&& value) { SetConfigId(std::move(value)); return *this;}
50 inline DeleteConfigRequest& WithConfigId(const char* value) { SetConfigId(value); return *this;}
52
54
57 inline const ConfigCapabilityType& GetConfigType() const{ return m_configType; }
58 inline bool ConfigTypeHasBeenSet() const { return m_configTypeHasBeenSet; }
59 inline void SetConfigType(const ConfigCapabilityType& value) { m_configTypeHasBeenSet = true; m_configType = value; }
60 inline void SetConfigType(ConfigCapabilityType&& value) { m_configTypeHasBeenSet = true; m_configType = std::move(value); }
61 inline DeleteConfigRequest& WithConfigType(const ConfigCapabilityType& value) { SetConfigType(value); return *this;}
62 inline DeleteConfigRequest& WithConfigType(ConfigCapabilityType&& value) { SetConfigType(std::move(value)); return *this;}
64 private:
65
66 Aws::String m_configId;
67 bool m_configIdHasBeenSet = false;
68
69 ConfigCapabilityType m_configType;
70 bool m_configTypeHasBeenSet = false;
71 };
72
73} // namespace Model
74} // namespace GroundStation
75} // namespace Aws
void SetConfigType(const ConfigCapabilityType &value)
AWS_GROUNDSTATION_API Aws::String SerializePayload() const override
DeleteConfigRequest & WithConfigType(ConfigCapabilityType &&value)
DeleteConfigRequest & WithConfigType(const ConfigCapabilityType &value)
DeleteConfigRequest & WithConfigId(const Aws::String &value)
DeleteConfigRequest & WithConfigId(const char *value)
const ConfigCapabilityType & GetConfigType() const
DeleteConfigRequest & WithConfigId(Aws::String &&value)
virtual const char * GetServiceRequestName() const override
void SetConfigType(ConfigCapabilityType &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String