AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
UpdateEphemerisRequest.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 <utility>
11
12namespace Aws
13{
14namespace GroundStation
15{
16namespace Model
17{
18
22 {
23 public:
24 AWS_GROUNDSTATION_API UpdateEphemerisRequest();
25
26 // Service request name is the Operation name which will send this request out,
27 // each operation should has unique request name, so that we can get operation's name from this request.
28 // Note: this is not true for response, multiple operations may have the same response name,
29 // so we can not get operation's name from response.
30 inline virtual const char* GetServiceRequestName() const override { return "UpdateEphemeris"; }
31
32 AWS_GROUNDSTATION_API Aws::String SerializePayload() const override;
33
34
36
40 inline bool GetEnabled() const{ return m_enabled; }
41 inline bool EnabledHasBeenSet() const { return m_enabledHasBeenSet; }
42 inline void SetEnabled(bool value) { m_enabledHasBeenSet = true; m_enabled = value; }
43 inline UpdateEphemerisRequest& WithEnabled(bool value) { SetEnabled(value); return *this;}
45
47
50 inline const Aws::String& GetEphemerisId() const{ return m_ephemerisId; }
51 inline bool EphemerisIdHasBeenSet() const { return m_ephemerisIdHasBeenSet; }
52 inline void SetEphemerisId(const Aws::String& value) { m_ephemerisIdHasBeenSet = true; m_ephemerisId = value; }
53 inline void SetEphemerisId(Aws::String&& value) { m_ephemerisIdHasBeenSet = true; m_ephemerisId = std::move(value); }
54 inline void SetEphemerisId(const char* value) { m_ephemerisIdHasBeenSet = true; m_ephemerisId.assign(value); }
55 inline UpdateEphemerisRequest& WithEphemerisId(const Aws::String& value) { SetEphemerisId(value); return *this;}
56 inline UpdateEphemerisRequest& WithEphemerisId(Aws::String&& value) { SetEphemerisId(std::move(value)); return *this;}
57 inline UpdateEphemerisRequest& WithEphemerisId(const char* value) { SetEphemerisId(value); return *this;}
59
61
65 inline const Aws::String& GetName() const{ return m_name; }
66 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
67 inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
68 inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
69 inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
70 inline UpdateEphemerisRequest& WithName(const Aws::String& value) { SetName(value); return *this;}
71 inline UpdateEphemerisRequest& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
72 inline UpdateEphemerisRequest& WithName(const char* value) { SetName(value); return *this;}
74
76
82 inline int GetPriority() const{ return m_priority; }
83 inline bool PriorityHasBeenSet() const { return m_priorityHasBeenSet; }
84 inline void SetPriority(int value) { m_priorityHasBeenSet = true; m_priority = value; }
85 inline UpdateEphemerisRequest& WithPriority(int value) { SetPriority(value); return *this;}
87 private:
88
89 bool m_enabled;
90 bool m_enabledHasBeenSet = false;
91
92 Aws::String m_ephemerisId;
93 bool m_ephemerisIdHasBeenSet = false;
94
95 Aws::String m_name;
96 bool m_nameHasBeenSet = false;
97
98 int m_priority;
99 bool m_priorityHasBeenSet = false;
100 };
101
102} // namespace Model
103} // namespace GroundStation
104} // namespace Aws
UpdateEphemerisRequest & WithEphemerisId(const char *value)
AWS_GROUNDSTATION_API Aws::String SerializePayload() const override
UpdateEphemerisRequest & WithEphemerisId(const Aws::String &value)
UpdateEphemerisRequest & WithEphemerisId(Aws::String &&value)
UpdateEphemerisRequest & WithName(const Aws::String &value)
UpdateEphemerisRequest & WithName(Aws::String &&value)
UpdateEphemerisRequest & WithName(const char *value)
virtual const char * GetServiceRequestName() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String