AWS SDK for C++

AWS SDK for C++ Version 1.11.716

Loading...
Searching...
No Matches
UpdateCloudExadataInfrastructureRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/odb/OdbRequest.h>
9#include <aws/odb/Odb_EXPORTS.h>
10#include <aws/odb/model/MaintenanceWindow.h>
11
12#include <utility>
13
14namespace Aws {
15namespace odb {
16namespace Model {
17
21 public:
23
24 // Service request name is the Operation name which will send this request out,
25 // each operation should has unique request name, so that we can get operation's name from this request.
26 // Note: this is not true for response, multiple operations may have the same response name,
27 // so we can not get operation's name from response.
28 inline virtual const char* GetServiceRequestName() const override { return "UpdateCloudExadataInfrastructure"; }
29
30 AWS_ODB_API Aws::String SerializePayload() const override;
31
33
35
38 inline const Aws::String& GetCloudExadataInfrastructureId() const { return m_cloudExadataInfrastructureId; }
39 inline bool CloudExadataInfrastructureIdHasBeenSet() const { return m_cloudExadataInfrastructureIdHasBeenSet; }
40 template <typename CloudExadataInfrastructureIdT = Aws::String>
41 void SetCloudExadataInfrastructureId(CloudExadataInfrastructureIdT&& value) {
42 m_cloudExadataInfrastructureIdHasBeenSet = true;
43 m_cloudExadataInfrastructureId = std::forward<CloudExadataInfrastructureIdT>(value);
44 }
45 template <typename CloudExadataInfrastructureIdT = Aws::String>
47 SetCloudExadataInfrastructureId(std::forward<CloudExadataInfrastructureIdT>(value));
48 return *this;
49 }
51
53
54 inline const MaintenanceWindow& GetMaintenanceWindow() const { return m_maintenanceWindow; }
55 inline bool MaintenanceWindowHasBeenSet() const { return m_maintenanceWindowHasBeenSet; }
56 template <typename MaintenanceWindowT = MaintenanceWindow>
57 void SetMaintenanceWindow(MaintenanceWindowT&& value) {
58 m_maintenanceWindowHasBeenSet = true;
59 m_maintenanceWindow = std::forward<MaintenanceWindowT>(value);
60 }
61 template <typename MaintenanceWindowT = MaintenanceWindow>
63 SetMaintenanceWindow(std::forward<MaintenanceWindowT>(value));
64 return *this;
65 }
67 private:
68 Aws::String m_cloudExadataInfrastructureId;
69
70 MaintenanceWindow m_maintenanceWindow;
71 bool m_cloudExadataInfrastructureIdHasBeenSet = false;
72 bool m_maintenanceWindowHasBeenSet = false;
73};
74
75} // namespace Model
76} // namespace odb
77} // namespace Aws
AWS_ODB_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
UpdateCloudExadataInfrastructureRequest & WithCloudExadataInfrastructureId(CloudExadataInfrastructureIdT &&value)
UpdateCloudExadataInfrastructureRequest & WithMaintenanceWindow(MaintenanceWindowT &&value)
AWS_ODB_API Aws::String SerializePayload() const override
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String