AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ConfigListItem.h
1
6#pragma once
7#include <aws/groundstation/GroundStation_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/groundstation/model/ConfigCapabilityType.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Json
17{
18 class JsonValue;
19 class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace GroundStation
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_GROUNDSTATION_API ConfigListItem();
37 AWS_GROUNDSTATION_API ConfigListItem(Aws::Utils::Json::JsonView jsonValue);
38 AWS_GROUNDSTATION_API ConfigListItem& operator=(Aws::Utils::Json::JsonView jsonValue);
39 AWS_GROUNDSTATION_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const Aws::String& GetConfigArn() const{ return m_configArn; }
47 inline bool ConfigArnHasBeenSet() const { return m_configArnHasBeenSet; }
48 inline void SetConfigArn(const Aws::String& value) { m_configArnHasBeenSet = true; m_configArn = value; }
49 inline void SetConfigArn(Aws::String&& value) { m_configArnHasBeenSet = true; m_configArn = std::move(value); }
50 inline void SetConfigArn(const char* value) { m_configArnHasBeenSet = true; m_configArn.assign(value); }
51 inline ConfigListItem& WithConfigArn(const Aws::String& value) { SetConfigArn(value); return *this;}
52 inline ConfigListItem& WithConfigArn(Aws::String&& value) { SetConfigArn(std::move(value)); return *this;}
53 inline ConfigListItem& WithConfigArn(const char* value) { SetConfigArn(value); return *this;}
55
57
60 inline const Aws::String& GetConfigId() const{ return m_configId; }
61 inline bool ConfigIdHasBeenSet() const { return m_configIdHasBeenSet; }
62 inline void SetConfigId(const Aws::String& value) { m_configIdHasBeenSet = true; m_configId = value; }
63 inline void SetConfigId(Aws::String&& value) { m_configIdHasBeenSet = true; m_configId = std::move(value); }
64 inline void SetConfigId(const char* value) { m_configIdHasBeenSet = true; m_configId.assign(value); }
65 inline ConfigListItem& WithConfigId(const Aws::String& value) { SetConfigId(value); return *this;}
66 inline ConfigListItem& WithConfigId(Aws::String&& value) { SetConfigId(std::move(value)); return *this;}
67 inline ConfigListItem& WithConfigId(const char* value) { SetConfigId(value); return *this;}
69
71
74 inline const ConfigCapabilityType& GetConfigType() const{ return m_configType; }
75 inline bool ConfigTypeHasBeenSet() const { return m_configTypeHasBeenSet; }
76 inline void SetConfigType(const ConfigCapabilityType& value) { m_configTypeHasBeenSet = true; m_configType = value; }
77 inline void SetConfigType(ConfigCapabilityType&& value) { m_configTypeHasBeenSet = true; m_configType = std::move(value); }
78 inline ConfigListItem& WithConfigType(const ConfigCapabilityType& value) { SetConfigType(value); return *this;}
79 inline ConfigListItem& WithConfigType(ConfigCapabilityType&& value) { SetConfigType(std::move(value)); return *this;}
81
83
86 inline const Aws::String& GetName() const{ return m_name; }
87 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
88 inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
89 inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
90 inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
91 inline ConfigListItem& WithName(const Aws::String& value) { SetName(value); return *this;}
92 inline ConfigListItem& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
93 inline ConfigListItem& WithName(const char* value) { SetName(value); return *this;}
95 private:
96
97 Aws::String m_configArn;
98 bool m_configArnHasBeenSet = false;
99
100 Aws::String m_configId;
101 bool m_configIdHasBeenSet = false;
102
103 ConfigCapabilityType m_configType;
104 bool m_configTypeHasBeenSet = false;
105
106 Aws::String m_name;
107 bool m_nameHasBeenSet = false;
108 };
109
110} // namespace Model
111} // namespace GroundStation
112} // namespace Aws
void SetConfigId(const Aws::String &value)
void SetConfigType(ConfigCapabilityType &&value)
ConfigListItem & WithConfigId(Aws::String &&value)
const Aws::String & GetConfigId() const
ConfigListItem & WithName(const char *value)
ConfigListItem & WithName(const Aws::String &value)
ConfigListItem & WithConfigArn(const Aws::String &value)
void SetConfigArn(const Aws::String &value)
void SetName(const Aws::String &value)
ConfigListItem & WithConfigType(const ConfigCapabilityType &value)
ConfigListItem & WithConfigId(const Aws::String &value)
AWS_GROUNDSTATION_API ConfigListItem & operator=(Aws::Utils::Json::JsonView jsonValue)
ConfigListItem & WithConfigType(ConfigCapabilityType &&value)
AWS_GROUNDSTATION_API ConfigListItem()
ConfigListItem & WithConfigArn(const char *value)
const Aws::String & GetConfigArn() const
ConfigListItem & WithName(Aws::String &&value)
ConfigListItem & WithConfigArn(Aws::String &&value)
const ConfigCapabilityType & GetConfigType() const
AWS_GROUNDSTATION_API ConfigListItem(Aws::Utils::Json::JsonView jsonValue)
AWS_GROUNDSTATION_API Aws::Utils::Json::JsonValue Jsonize() const
void SetConfigType(const ConfigCapabilityType &value)
ConfigListItem & WithConfigId(const char *value)
const Aws::String & GetName() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue