AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ResetSnapshotAttributeRequest.h
1
6#pragma once
7#include <aws/ec2/EC2_EXPORTS.h>
8#include <aws/ec2/EC2Request.h>
9#include <aws/ec2/model/SnapshotAttributeName.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 "ResetSnapshotAttribute"; }
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
45 inline const SnapshotAttributeName& GetAttribute() const{ return m_attribute; }
46 inline bool AttributeHasBeenSet() const { return m_attributeHasBeenSet; }
47 inline void SetAttribute(const SnapshotAttributeName& value) { m_attributeHasBeenSet = true; m_attribute = value; }
48 inline void SetAttribute(SnapshotAttributeName&& value) { m_attributeHasBeenSet = true; m_attribute = std::move(value); }
50 inline ResetSnapshotAttributeRequest& WithAttribute(SnapshotAttributeName&& value) { SetAttribute(std::move(value)); return *this;}
52
54
57 inline const Aws::String& GetSnapshotId() const{ return m_snapshotId; }
58 inline bool SnapshotIdHasBeenSet() const { return m_snapshotIdHasBeenSet; }
59 inline void SetSnapshotId(const Aws::String& value) { m_snapshotIdHasBeenSet = true; m_snapshotId = value; }
60 inline void SetSnapshotId(Aws::String&& value) { m_snapshotIdHasBeenSet = true; m_snapshotId = std::move(value); }
61 inline void SetSnapshotId(const char* value) { m_snapshotIdHasBeenSet = true; m_snapshotId.assign(value); }
62 inline ResetSnapshotAttributeRequest& WithSnapshotId(const Aws::String& value) { SetSnapshotId(value); return *this;}
63 inline ResetSnapshotAttributeRequest& WithSnapshotId(Aws::String&& value) { SetSnapshotId(std::move(value)); return *this;}
64 inline ResetSnapshotAttributeRequest& WithSnapshotId(const char* value) { SetSnapshotId(value); return *this;}
66
68
74 inline bool GetDryRun() const{ return m_dryRun; }
75 inline bool DryRunHasBeenSet() const { return m_dryRunHasBeenSet; }
76 inline void SetDryRun(bool value) { m_dryRunHasBeenSet = true; m_dryRun = value; }
77 inline ResetSnapshotAttributeRequest& WithDryRun(bool value) { SetDryRun(value); return *this;}
79 private:
80
81 SnapshotAttributeName m_attribute;
82 bool m_attributeHasBeenSet = false;
83
84 Aws::String m_snapshotId;
85 bool m_snapshotIdHasBeenSet = false;
86
87 bool m_dryRun;
88 bool m_dryRunHasBeenSet = false;
89 };
90
91} // namespace Model
92} // namespace EC2
93} // namespace Aws
ResetSnapshotAttributeRequest & WithSnapshotId(Aws::String &&value)
ResetSnapshotAttributeRequest & WithDryRun(bool value)
ResetSnapshotAttributeRequest & WithAttribute(const SnapshotAttributeName &value)
ResetSnapshotAttributeRequest & WithSnapshotId(const Aws::String &value)
AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
ResetSnapshotAttributeRequest & WithSnapshotId(const char *value)
AWS_EC2_API Aws::String SerializePayload() const override
ResetSnapshotAttributeRequest & WithAttribute(SnapshotAttributeName &&value)
virtual const char * GetServiceRequestName() const override
void SetAttribute(const SnapshotAttributeName &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String