AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ResetAddressAttributeRequest.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 <aws/ec2/model/AddressAttributeName.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 "ResetAddressAttribute"; }
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 Aws::String& GetAllocationId() const{ return m_allocationId; }
45 inline bool AllocationIdHasBeenSet() const { return m_allocationIdHasBeenSet; }
46 inline void SetAllocationId(const Aws::String& value) { m_allocationIdHasBeenSet = true; m_allocationId = value; }
47 inline void SetAllocationId(Aws::String&& value) { m_allocationIdHasBeenSet = true; m_allocationId = std::move(value); }
48 inline void SetAllocationId(const char* value) { m_allocationIdHasBeenSet = true; m_allocationId.assign(value); }
49 inline ResetAddressAttributeRequest& WithAllocationId(const Aws::String& value) { SetAllocationId(value); return *this;}
50 inline ResetAddressAttributeRequest& WithAllocationId(Aws::String&& value) { SetAllocationId(std::move(value)); return *this;}
51 inline ResetAddressAttributeRequest& WithAllocationId(const char* value) { SetAllocationId(value); return *this;}
53
55
58 inline const AddressAttributeName& GetAttribute() const{ return m_attribute; }
59 inline bool AttributeHasBeenSet() const { return m_attributeHasBeenSet; }
60 inline void SetAttribute(const AddressAttributeName& value) { m_attributeHasBeenSet = true; m_attribute = value; }
61 inline void SetAttribute(AddressAttributeName&& value) { m_attributeHasBeenSet = true; m_attribute = std::move(value); }
62 inline ResetAddressAttributeRequest& WithAttribute(const AddressAttributeName& value) { SetAttribute(value); return *this;}
63 inline ResetAddressAttributeRequest& WithAttribute(AddressAttributeName&& value) { SetAttribute(std::move(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 ResetAddressAttributeRequest& WithDryRun(bool value) { SetDryRun(value); return *this;}
78 private:
79
80 Aws::String m_allocationId;
81 bool m_allocationIdHasBeenSet = false;
82
83 AddressAttributeName m_attribute;
84 bool m_attributeHasBeenSet = false;
85
86 bool m_dryRun;
87 bool m_dryRunHasBeenSet = false;
88 };
89
90} // namespace Model
91} // namespace EC2
92} // namespace Aws
virtual const char * GetServiceRequestName() const override
AWS_EC2_API Aws::String SerializePayload() const override
ResetAddressAttributeRequest & WithAttribute(const AddressAttributeName &value)
ResetAddressAttributeRequest & WithDryRun(bool value)
void SetAttribute(const AddressAttributeName &value)
ResetAddressAttributeRequest & WithAllocationId(const char *value)
ResetAddressAttributeRequest & WithAllocationId(Aws::String &&value)
ResetAddressAttributeRequest & WithAttribute(AddressAttributeName &&value)
AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
ResetAddressAttributeRequest & WithAllocationId(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String