AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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:
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 inline void SetAutoEnableIO(const AttributeBooleanValue& value) { m_autoEnableIOHasBeenSet = true; m_autoEnableIO = value; }
47 inline void SetAutoEnableIO(AttributeBooleanValue&& value) { m_autoEnableIOHasBeenSet = true; m_autoEnableIO = std::move(value); }
49 inline ModifyVolumeAttributeRequest& WithAutoEnableIO(AttributeBooleanValue&& value) { SetAutoEnableIO(std::move(value)); return *this;}
51
53
56 inline const Aws::String& GetVolumeId() const{ return m_volumeId; }
57 inline bool VolumeIdHasBeenSet() const { return m_volumeIdHasBeenSet; }
58 inline void SetVolumeId(const Aws::String& value) { m_volumeIdHasBeenSet = true; m_volumeId = value; }
59 inline void SetVolumeId(Aws::String&& value) { m_volumeIdHasBeenSet = true; m_volumeId = std::move(value); }
60 inline void SetVolumeId(const char* value) { m_volumeIdHasBeenSet = true; m_volumeId.assign(value); }
61 inline ModifyVolumeAttributeRequest& WithVolumeId(const Aws::String& value) { SetVolumeId(value); return *this;}
62 inline ModifyVolumeAttributeRequest& WithVolumeId(Aws::String&& value) { SetVolumeId(std::move(value)); return *this;}
63 inline ModifyVolumeAttributeRequest& WithVolumeId(const char* value) { SetVolumeId(value); return *this;}
65
67
73 inline bool GetDryRun() const{ return m_dryRun; }
74 inline bool DryRunHasBeenSet() const { return m_dryRunHasBeenSet; }
75 inline void SetDryRun(bool value) { m_dryRunHasBeenSet = true; m_dryRun = value; }
76 inline ModifyVolumeAttributeRequest& WithDryRun(bool value) { SetDryRun(value); return *this;}
78 private:
79
80 AttributeBooleanValue m_autoEnableIO;
81 bool m_autoEnableIOHasBeenSet = false;
82
83 Aws::String m_volumeId;
84 bool m_volumeIdHasBeenSet = false;
85
86 bool m_dryRun;
87 bool m_dryRunHasBeenSet = false;
88 };
89
90} // namespace Model
91} // namespace EC2
92} // namespace Aws
AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
ModifyVolumeAttributeRequest & WithVolumeId(Aws::String &&value)
ModifyVolumeAttributeRequest & WithDryRun(bool value)
ModifyVolumeAttributeRequest & WithVolumeId(const char *value)
ModifyVolumeAttributeRequest & WithAutoEnableIO(AttributeBooleanValue &&value)
ModifyVolumeAttributeRequest & WithVolumeId(const Aws::String &value)
AWS_EC2_API Aws::String SerializePayload() const override
ModifyVolumeAttributeRequest & WithAutoEnableIO(const AttributeBooleanValue &value)
virtual const char * GetServiceRequestName() const override
const AttributeBooleanValue & GetAutoEnableIO() const
void SetAutoEnableIO(const AttributeBooleanValue &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String