AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DetachNetworkInterfaceRequest.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
26 {
27 public:
29
30 // Service request name is the Operation name which will send this request out,
31 // each operation should has unique request name, so that we can get operation's name from this request.
32 // Note: this is not true for response, multiple operations may have the same response name,
33 // so we can not get operation's name from response.
34 inline virtual const char* GetServiceRequestName() const override { return "DetachNetworkInterface"; }
35
36 AWS_EC2_API Aws::String SerializePayload() const override;
37
38 protected:
39 AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
40
41 public:
42
44
50 inline bool GetDryRun() const{ return m_dryRun; }
51 inline bool DryRunHasBeenSet() const { return m_dryRunHasBeenSet; }
52 inline void SetDryRun(bool value) { m_dryRunHasBeenSet = true; m_dryRun = value; }
53 inline DetachNetworkInterfaceRequest& WithDryRun(bool value) { SetDryRun(value); return *this;}
55
57
60 inline const Aws::String& GetAttachmentId() const{ return m_attachmentId; }
61 inline bool AttachmentIdHasBeenSet() const { return m_attachmentIdHasBeenSet; }
62 inline void SetAttachmentId(const Aws::String& value) { m_attachmentIdHasBeenSet = true; m_attachmentId = value; }
63 inline void SetAttachmentId(Aws::String&& value) { m_attachmentIdHasBeenSet = true; m_attachmentId = std::move(value); }
64 inline void SetAttachmentId(const char* value) { m_attachmentIdHasBeenSet = true; m_attachmentId.assign(value); }
65 inline DetachNetworkInterfaceRequest& WithAttachmentId(const Aws::String& value) { SetAttachmentId(value); return *this;}
66 inline DetachNetworkInterfaceRequest& WithAttachmentId(Aws::String&& value) { SetAttachmentId(std::move(value)); return *this;}
67 inline DetachNetworkInterfaceRequest& WithAttachmentId(const char* value) { SetAttachmentId(value); return *this;}
69
71
85 inline bool GetForce() const{ return m_force; }
86 inline bool ForceHasBeenSet() const { return m_forceHasBeenSet; }
87 inline void SetForce(bool value) { m_forceHasBeenSet = true; m_force = value; }
88 inline DetachNetworkInterfaceRequest& WithForce(bool value) { SetForce(value); return *this;}
90 private:
91
92 bool m_dryRun;
93 bool m_dryRunHasBeenSet = false;
94
95 Aws::String m_attachmentId;
96 bool m_attachmentIdHasBeenSet = false;
97
98 bool m_force;
99 bool m_forceHasBeenSet = false;
100 };
101
102} // namespace Model
103} // namespace EC2
104} // namespace Aws
AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
DetachNetworkInterfaceRequest & WithForce(bool value)
virtual const char * GetServiceRequestName() const override
DetachNetworkInterfaceRequest & WithAttachmentId(const Aws::String &value)
DetachNetworkInterfaceRequest & WithDryRun(bool value)
DetachNetworkInterfaceRequest & WithAttachmentId(const char *value)
AWS_EC2_API Aws::String SerializePayload() const override
DetachNetworkInterfaceRequest & WithAttachmentId(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String