AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DescribeVolumeAttributeRequest.h
1
6#pragma once
7#include <aws/ec2/EC2_EXPORTS.h>
8#include <aws/ec2/EC2Request.h>
9#include <aws/ec2/model/VolumeAttributeName.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 DescribeVolumeAttributeRequest() = 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 "DescribeVolumeAttribute"; }
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 VolumeAttributeName GetAttribute() const { return m_attribute; }
45 inline bool AttributeHasBeenSet() const { return m_attributeHasBeenSet; }
46 inline void SetAttribute(VolumeAttributeName value) { m_attributeHasBeenSet = true; m_attribute = value; }
49
51
54 inline const Aws::String& GetVolumeId() const { return m_volumeId; }
55 inline bool VolumeIdHasBeenSet() const { return m_volumeIdHasBeenSet; }
56 template<typename VolumeIdT = Aws::String>
57 void SetVolumeId(VolumeIdT&& value) { m_volumeIdHasBeenSet = true; m_volumeId = std::forward<VolumeIdT>(value); }
58 template<typename VolumeIdT = Aws::String>
59 DescribeVolumeAttributeRequest& WithVolumeId(VolumeIdT&& value) { SetVolumeId(std::forward<VolumeIdT>(value)); return *this;}
61
63
69 inline bool GetDryRun() const { return m_dryRun; }
70 inline bool DryRunHasBeenSet() const { return m_dryRunHasBeenSet; }
71 inline void SetDryRun(bool value) { m_dryRunHasBeenSet = true; m_dryRun = value; }
72 inline DescribeVolumeAttributeRequest& WithDryRun(bool value) { SetDryRun(value); return *this;}
74 private:
75
77 bool m_attributeHasBeenSet = false;
78
79 Aws::String m_volumeId;
80 bool m_volumeIdHasBeenSet = false;
81
82 bool m_dryRun{false};
83 bool m_dryRunHasBeenSet = false;
84 };
85
86} // namespace Model
87} // namespace EC2
88} // namespace Aws
AWS_EC2_API Aws::String SerializePayload() const override
AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
DescribeVolumeAttributeRequest & WithAttribute(VolumeAttributeName value)
DescribeVolumeAttributeRequest & WithDryRun(bool value)
virtual const char * GetServiceRequestName() const override
DescribeVolumeAttributeRequest & WithVolumeId(VolumeIdT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String