AWS SDK for C++

AWS SDK for C++ Version 1.11.741

Loading...
Searching...
No Matches
GroundStationData.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/groundstation/GroundStation_EXPORTS.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace GroundStation {
20namespace Model {
21
28 public:
29 AWS_GROUNDSTATION_API GroundStationData() = default;
30 AWS_GROUNDSTATION_API GroundStationData(Aws::Utils::Json::JsonView jsonValue);
31 AWS_GROUNDSTATION_API GroundStationData& operator=(Aws::Utils::Json::JsonView jsonValue);
32 AWS_GROUNDSTATION_API Aws::Utils::Json::JsonValue Jsonize() const;
33
35
38 inline const Aws::String& GetGroundStationId() const { return m_groundStationId; }
39 inline bool GroundStationIdHasBeenSet() const { return m_groundStationIdHasBeenSet; }
40 template <typename GroundStationIdT = Aws::String>
41 void SetGroundStationId(GroundStationIdT&& value) {
42 m_groundStationIdHasBeenSet = true;
43 m_groundStationId = std::forward<GroundStationIdT>(value);
44 }
45 template <typename GroundStationIdT = Aws::String>
46 GroundStationData& WithGroundStationId(GroundStationIdT&& value) {
47 SetGroundStationId(std::forward<GroundStationIdT>(value));
48 return *this;
49 }
51
53
56 inline const Aws::String& GetGroundStationName() const { return m_groundStationName; }
57 inline bool GroundStationNameHasBeenSet() const { return m_groundStationNameHasBeenSet; }
58 template <typename GroundStationNameT = Aws::String>
59 void SetGroundStationName(GroundStationNameT&& value) {
60 m_groundStationNameHasBeenSet = true;
61 m_groundStationName = std::forward<GroundStationNameT>(value);
62 }
63 template <typename GroundStationNameT = Aws::String>
64 GroundStationData& WithGroundStationName(GroundStationNameT&& value) {
65 SetGroundStationName(std::forward<GroundStationNameT>(value));
66 return *this;
67 }
69
71
74 inline const Aws::String& GetRegion() const { return m_region; }
75 inline bool RegionHasBeenSet() const { return m_regionHasBeenSet; }
76 template <typename RegionT = Aws::String>
77 void SetRegion(RegionT&& value) {
78 m_regionHasBeenSet = true;
79 m_region = std::forward<RegionT>(value);
80 }
81 template <typename RegionT = Aws::String>
82 GroundStationData& WithRegion(RegionT&& value) {
83 SetRegion(std::forward<RegionT>(value));
84 return *this;
85 }
87 private:
88 Aws::String m_groundStationId;
89
90 Aws::String m_groundStationName;
91
92 Aws::String m_region;
93 bool m_groundStationIdHasBeenSet = false;
94 bool m_groundStationNameHasBeenSet = false;
95 bool m_regionHasBeenSet = false;
96};
97
98} // namespace Model
99} // namespace GroundStation
100} // namespace Aws
GroundStationData & WithGroundStationId(GroundStationIdT &&value)
const Aws::String & GetGroundStationName() const
AWS_GROUNDSTATION_API GroundStationData(Aws::Utils::Json::JsonView jsonValue)
AWS_GROUNDSTATION_API GroundStationData()=default
void SetGroundStationName(GroundStationNameT &&value)
GroundStationData & WithGroundStationName(GroundStationNameT &&value)
void SetGroundStationId(GroundStationIdT &&value)
AWS_GROUNDSTATION_API GroundStationData & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_GROUNDSTATION_API Aws::Utils::Json::JsonValue Jsonize() const
GroundStationData & WithRegion(RegionT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue