AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
PutMaintenanceStartTimeRequest.h
1
6#pragma once
7#include <aws/backup-gateway/BackupGateway_EXPORTS.h>
8#include <aws/backup-gateway/BackupGatewayRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace BackupGateway
15{
16namespace Model
17{
18
22 {
23 public:
24 AWS_BACKUPGATEWAY_API PutMaintenanceStartTimeRequest();
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 "PutMaintenanceStartTime"; }
31
32 AWS_BACKUPGATEWAY_API Aws::String SerializePayload() const override;
33
34 AWS_BACKUPGATEWAY_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
35
36
38
42 inline int GetDayOfMonth() const{ return m_dayOfMonth; }
43 inline bool DayOfMonthHasBeenSet() const { return m_dayOfMonthHasBeenSet; }
44 inline void SetDayOfMonth(int value) { m_dayOfMonthHasBeenSet = true; m_dayOfMonth = value; }
45 inline PutMaintenanceStartTimeRequest& WithDayOfMonth(int value) { SetDayOfMonth(value); return *this;}
47
49
52 inline int GetDayOfWeek() const{ return m_dayOfWeek; }
53 inline bool DayOfWeekHasBeenSet() const { return m_dayOfWeekHasBeenSet; }
54 inline void SetDayOfWeek(int value) { m_dayOfWeekHasBeenSet = true; m_dayOfWeek = value; }
55 inline PutMaintenanceStartTimeRequest& WithDayOfWeek(int value) { SetDayOfWeek(value); return *this;}
57
59
63 inline const Aws::String& GetGatewayArn() const{ return m_gatewayArn; }
64 inline bool GatewayArnHasBeenSet() const { return m_gatewayArnHasBeenSet; }
65 inline void SetGatewayArn(const Aws::String& value) { m_gatewayArnHasBeenSet = true; m_gatewayArn = value; }
66 inline void SetGatewayArn(Aws::String&& value) { m_gatewayArnHasBeenSet = true; m_gatewayArn = std::move(value); }
67 inline void SetGatewayArn(const char* value) { m_gatewayArnHasBeenSet = true; m_gatewayArn.assign(value); }
68 inline PutMaintenanceStartTimeRequest& WithGatewayArn(const Aws::String& value) { SetGatewayArn(value); return *this;}
69 inline PutMaintenanceStartTimeRequest& WithGatewayArn(Aws::String&& value) { SetGatewayArn(std::move(value)); return *this;}
70 inline PutMaintenanceStartTimeRequest& WithGatewayArn(const char* value) { SetGatewayArn(value); return *this;}
72
74
77 inline int GetHourOfDay() const{ return m_hourOfDay; }
78 inline bool HourOfDayHasBeenSet() const { return m_hourOfDayHasBeenSet; }
79 inline void SetHourOfDay(int value) { m_hourOfDayHasBeenSet = true; m_hourOfDay = value; }
80 inline PutMaintenanceStartTimeRequest& WithHourOfDay(int value) { SetHourOfDay(value); return *this;}
82
84
87 inline int GetMinuteOfHour() const{ return m_minuteOfHour; }
88 inline bool MinuteOfHourHasBeenSet() const { return m_minuteOfHourHasBeenSet; }
89 inline void SetMinuteOfHour(int value) { m_minuteOfHourHasBeenSet = true; m_minuteOfHour = value; }
90 inline PutMaintenanceStartTimeRequest& WithMinuteOfHour(int value) { SetMinuteOfHour(value); return *this;}
92 private:
93
94 int m_dayOfMonth;
95 bool m_dayOfMonthHasBeenSet = false;
96
97 int m_dayOfWeek;
98 bool m_dayOfWeekHasBeenSet = false;
99
100 Aws::String m_gatewayArn;
101 bool m_gatewayArnHasBeenSet = false;
102
103 int m_hourOfDay;
104 bool m_hourOfDayHasBeenSet = false;
105
106 int m_minuteOfHour;
107 bool m_minuteOfHourHasBeenSet = false;
108 };
109
110} // namespace Model
111} // namespace BackupGateway
112} // namespace Aws
PutMaintenanceStartTimeRequest & WithGatewayArn(const Aws::String &value)
AWS_BACKUPGATEWAY_API Aws::String SerializePayload() const override
PutMaintenanceStartTimeRequest & WithGatewayArn(const char *value)
PutMaintenanceStartTimeRequest & WithGatewayArn(Aws::String &&value)
AWS_BACKUPGATEWAY_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String