AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ReplaceNetworkAclAssociationRequest.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
22 {
23 public:
25
26 // Service request name is the Operation name which will send this request out,
27 // each operation should has unique request name, so that we can get operation's name from this request.
28 // Note: this is not true for response, multiple operations may have the same response name,
29 // so we can not get operation's name from response.
30 inline virtual const char* GetServiceRequestName() const override { return "ReplaceNetworkAclAssociation"; }
31
32 AWS_EC2_API Aws::String SerializePayload() const override;
33
34 protected:
35 AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
36
37 public:
38
40
46 inline bool GetDryRun() const{ return m_dryRun; }
47 inline bool DryRunHasBeenSet() const { return m_dryRunHasBeenSet; }
48 inline void SetDryRun(bool value) { m_dryRunHasBeenSet = true; m_dryRun = value; }
49 inline ReplaceNetworkAclAssociationRequest& WithDryRun(bool value) { SetDryRun(value); return *this;}
51
53
57 inline const Aws::String& GetAssociationId() const{ return m_associationId; }
58 inline bool AssociationIdHasBeenSet() const { return m_associationIdHasBeenSet; }
59 inline void SetAssociationId(const Aws::String& value) { m_associationIdHasBeenSet = true; m_associationId = value; }
60 inline void SetAssociationId(Aws::String&& value) { m_associationIdHasBeenSet = true; m_associationId = std::move(value); }
61 inline void SetAssociationId(const char* value) { m_associationIdHasBeenSet = true; m_associationId.assign(value); }
63 inline ReplaceNetworkAclAssociationRequest& WithAssociationId(Aws::String&& value) { SetAssociationId(std::move(value)); return *this;}
64 inline ReplaceNetworkAclAssociationRequest& WithAssociationId(const char* value) { SetAssociationId(value); return *this;}
66
68
71 inline const Aws::String& GetNetworkAclId() const{ return m_networkAclId; }
72 inline bool NetworkAclIdHasBeenSet() const { return m_networkAclIdHasBeenSet; }
73 inline void SetNetworkAclId(const Aws::String& value) { m_networkAclIdHasBeenSet = true; m_networkAclId = value; }
74 inline void SetNetworkAclId(Aws::String&& value) { m_networkAclIdHasBeenSet = true; m_networkAclId = std::move(value); }
75 inline void SetNetworkAclId(const char* value) { m_networkAclIdHasBeenSet = true; m_networkAclId.assign(value); }
77 inline ReplaceNetworkAclAssociationRequest& WithNetworkAclId(Aws::String&& value) { SetNetworkAclId(std::move(value)); return *this;}
78 inline ReplaceNetworkAclAssociationRequest& WithNetworkAclId(const char* value) { SetNetworkAclId(value); return *this;}
80 private:
81
82 bool m_dryRun;
83 bool m_dryRunHasBeenSet = false;
84
85 Aws::String m_associationId;
86 bool m_associationIdHasBeenSet = false;
87
88 Aws::String m_networkAclId;
89 bool m_networkAclIdHasBeenSet = false;
90 };
91
92} // namespace Model
93} // namespace EC2
94} // namespace Aws
ReplaceNetworkAclAssociationRequest & WithAssociationId(Aws::String &&value)
ReplaceNetworkAclAssociationRequest & WithAssociationId(const char *value)
ReplaceNetworkAclAssociationRequest & WithNetworkAclId(const Aws::String &value)
ReplaceNetworkAclAssociationRequest & WithNetworkAclId(Aws::String &&value)
AWS_EC2_API Aws::String SerializePayload() const override
ReplaceNetworkAclAssociationRequest & WithDryRun(bool value)
ReplaceNetworkAclAssociationRequest & WithNetworkAclId(const char *value)
ReplaceNetworkAclAssociationRequest & WithAssociationId(const Aws::String &value)
AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String