AWS SDK for C++
AWS SDK for C++
Loading...
Searching...
No Matches
ModifySnapshotScheduleRequest.h
Go to the documentation of this file.
1
6#pragma once
11#include <utility>
12
13namespace Aws
14{
15namespace Redshift
16{
17namespace Model
18{
19
23 {
24 public:
26
27 // Service request name is the Operation name which will send this request out,
28 // each operation should has unique request name, so that we can get operation's name from this request.
29 // Note: this is not true for response, multiple operations may have the same response name,
30 // so we can not get operation's name from response.
31 inline virtual const char* GetServiceRequestName() const override { return "ModifySnapshotSchedule"; }
32
34
35 protected:
36 AWS_REDSHIFT_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
37
38 public:
39
43 inline const Aws::String& GetScheduleIdentifier() const{ return m_scheduleIdentifier; }
44
48 inline bool ScheduleIdentifierHasBeenSet() const { return m_scheduleIdentifierHasBeenSet; }
49
53 inline void SetScheduleIdentifier(const Aws::String& value) { m_scheduleIdentifierHasBeenSet = true; m_scheduleIdentifier = value; }
54
58 inline void SetScheduleIdentifier(Aws::String&& value) { m_scheduleIdentifierHasBeenSet = true; m_scheduleIdentifier = std::move(value); }
59
63 inline void SetScheduleIdentifier(const char* value) { m_scheduleIdentifierHasBeenSet = true; m_scheduleIdentifier.assign(value); }
64
69
74
78 inline ModifySnapshotScheduleRequest& WithScheduleIdentifier(const char* value) { SetScheduleIdentifier(value); return *this;}
79
80
85 inline const Aws::Vector<Aws::String>& GetScheduleDefinitions() const{ return m_scheduleDefinitions; }
86
91 inline bool ScheduleDefinitionsHasBeenSet() const { return m_scheduleDefinitionsHasBeenSet; }
92
97 inline void SetScheduleDefinitions(const Aws::Vector<Aws::String>& value) { m_scheduleDefinitionsHasBeenSet = true; m_scheduleDefinitions = value; }
98
103 inline void SetScheduleDefinitions(Aws::Vector<Aws::String>&& value) { m_scheduleDefinitionsHasBeenSet = true; m_scheduleDefinitions = std::move(value); }
104
110
116
121 inline ModifySnapshotScheduleRequest& AddScheduleDefinitions(const Aws::String& value) { m_scheduleDefinitionsHasBeenSet = true; m_scheduleDefinitions.push_back(value); return *this; }
122
127 inline ModifySnapshotScheduleRequest& AddScheduleDefinitions(Aws::String&& value) { m_scheduleDefinitionsHasBeenSet = true; m_scheduleDefinitions.push_back(std::move(value)); return *this; }
128
133 inline ModifySnapshotScheduleRequest& AddScheduleDefinitions(const char* value) { m_scheduleDefinitionsHasBeenSet = true; m_scheduleDefinitions.push_back(value); return *this; }
134
135 private:
136
137 Aws::String m_scheduleIdentifier;
138 bool m_scheduleIdentifierHasBeenSet = false;
139
140 Aws::Vector<Aws::String> m_scheduleDefinitions;
141 bool m_scheduleDefinitionsHasBeenSet = false;
142 };
143
144} // namespace Model
145} // namespace Redshift
146} // namespace Aws
#define AWS_REDSHIFT_API
ModifySnapshotScheduleRequest & AddScheduleDefinitions(Aws::String &&value)
ModifySnapshotScheduleRequest & WithScheduleIdentifier(const Aws::String &value)
ModifySnapshotScheduleRequest & WithScheduleDefinitions(const Aws::Vector< Aws::String > &value)
const Aws::Vector< Aws::String > & GetScheduleDefinitions() const
ModifySnapshotScheduleRequest & AddScheduleDefinitions(const char *value)
ModifySnapshotScheduleRequest & WithScheduleIdentifier(const char *value)
ModifySnapshotScheduleRequest & WithScheduleDefinitions(Aws::Vector< Aws::String > &&value)
ModifySnapshotScheduleRequest & AddScheduleDefinitions(const Aws::String &value)
void SetScheduleDefinitions(const Aws::Vector< Aws::String > &value)
AWS_REDSHIFT_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
void SetScheduleDefinitions(Aws::Vector< Aws::String > &&value)
ModifySnapshotScheduleRequest & WithScheduleIdentifier(Aws::String &&value)
AWS_REDSHIFT_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector