AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DeregisterImageRequest.h
1
6#pragma once
7#include <aws/ec2/EC2_EXPORTS.h>
8#include <aws/ec2/EC2Request.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace EC2
15{
16namespace Model
17{
18
25 {
26 public:
27 AWS_EC2_API DeregisterImageRequest() = default;
28
29 // Service request name is the Operation name which will send this request out,
30 // each operation should has unique request name, so that we can get operation's name from this request.
31 // Note: this is not true for response, multiple operations may have the same response name,
32 // so we can not get operation's name from response.
33 inline virtual const char* GetServiceRequestName() const override { return "DeregisterImage"; }
34
35 AWS_EC2_API Aws::String SerializePayload() const override;
36
37 protected:
38 AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
39
40 public:
41
43
46 inline const Aws::String& GetImageId() const { return m_imageId; }
47 inline bool ImageIdHasBeenSet() const { return m_imageIdHasBeenSet; }
48 template<typename ImageIdT = Aws::String>
49 void SetImageId(ImageIdT&& value) { m_imageIdHasBeenSet = true; m_imageId = std::forward<ImageIdT>(value); }
50 template<typename ImageIdT = Aws::String>
51 DeregisterImageRequest& WithImageId(ImageIdT&& value) { SetImageId(std::forward<ImageIdT>(value)); return *this;}
53
55
61 inline bool GetDeleteAssociatedSnapshots() const { return m_deleteAssociatedSnapshots; }
62 inline bool DeleteAssociatedSnapshotsHasBeenSet() const { return m_deleteAssociatedSnapshotsHasBeenSet; }
63 inline void SetDeleteAssociatedSnapshots(bool value) { m_deleteAssociatedSnapshotsHasBeenSet = true; m_deleteAssociatedSnapshots = value; }
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 DeregisterImageRequest& WithDryRun(bool value) { SetDryRun(value); return *this;}
79 private:
80
81 Aws::String m_imageId;
82 bool m_imageIdHasBeenSet = false;
83
84 bool m_deleteAssociatedSnapshots{false};
85 bool m_deleteAssociatedSnapshotsHasBeenSet = false;
86
87 bool m_dryRun{false};
88 bool m_dryRunHasBeenSet = false;
89 };
90
91} // namespace Model
92} // namespace EC2
93} // namespace Aws
virtual const char * GetServiceRequestName() const override
DeregisterImageRequest & WithDeleteAssociatedSnapshots(bool value)
AWS_EC2_API Aws::String SerializePayload() const override
DeregisterImageRequest & WithDryRun(bool value)
DeregisterImageRequest & WithImageId(ImageIdT &&value)
AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
AWS_EC2_API DeregisterImageRequest()=default
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String