AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
ModifyVolumeAttributeRequest.h
1
6#pragma once
7#include <aws/ec2/EC2_EXPORTS.h>
8#include <aws/ec2/EC2Request.h>
9#include <aws/ec2/model/AttributeBooleanValue.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <utility>
12
13namespace Aws
14{
15namespace EC2
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_EC2_API ModifyVolumeAttributeRequest() = default;
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 "ModifyVolumeAttribute"; }
32
33 AWS_EC2_API Aws::String SerializePayload() const override;
34
35 protected:
36 AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
37
38 public:
39
41
44 inline const AttributeBooleanValue& GetAutoEnableIO() const { return m_autoEnableIO; }
45 inline bool AutoEnableIOHasBeenSet() const { return m_autoEnableIOHasBeenSet; }
46 template<typename AutoEnableIOT = AttributeBooleanValue>
47 void SetAutoEnableIO(AutoEnableIOT&& value) { m_autoEnableIOHasBeenSet = true; m_autoEnableIO = std::forward<AutoEnableIOT>(value); }
48 template<typename AutoEnableIOT = AttributeBooleanValue>
49 ModifyVolumeAttributeRequest& WithAutoEnableIO(AutoEnableIOT&& value) { SetAutoEnableIO(std::forward<AutoEnableIOT>(value)); return *this;}
51
53
56 inline const Aws::String& GetVolumeId() const { return m_volumeId; }
57 inline bool VolumeIdHasBeenSet() const { return m_volumeIdHasBeenSet; }
58 template<typename VolumeIdT = Aws::String>
59 void SetVolumeId(VolumeIdT&& value) { m_volumeIdHasBeenSet = true; m_volumeId = std::forward<VolumeIdT>(value); }
60 template<typename VolumeIdT = Aws::String>
61 ModifyVolumeAttributeRequest& WithVolumeId(VolumeIdT&& value) { SetVolumeId(std::forward<VolumeIdT>(value)); return *this;}
63
65
71 inline bool GetDryRun() const { return m_dryRun; }
72 inline bool DryRunHasBeenSet() const { return m_dryRunHasBeenSet; }
73 inline void SetDryRun(bool value) { m_dryRunHasBeenSet = true; m_dryRun = value; }
74 inline ModifyVolumeAttributeRequest& WithDryRun(bool value) { SetDryRun(value); return *this;}
76 private:
77
78 AttributeBooleanValue m_autoEnableIO;
79 bool m_autoEnableIOHasBeenSet = false;
80
81 Aws::String m_volumeId;
82 bool m_volumeIdHasBeenSet = false;
83
84 bool m_dryRun{false};
85 bool m_dryRunHasBeenSet = false;
86 };
87
88} // namespace Model
89} // namespace EC2
90} // namespace Aws
AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
ModifyVolumeAttributeRequest & WithAutoEnableIO(AutoEnableIOT &&value)
ModifyVolumeAttributeRequest & WithDryRun(bool value)
AWS_EC2_API Aws::String SerializePayload() const override
virtual const char * GetServiceRequestName() const override
const AttributeBooleanValue & GetAutoEnableIO() const
ModifyVolumeAttributeRequest & WithVolumeId(VolumeIdT &&value)
AWS_EC2_API ModifyVolumeAttributeRequest()=default
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String