AWS SDK for C++

AWS SDK for C++ Version 1.11.743

Loading...
Searching...
No Matches
DisassociateEipFromVlanRequest.h
1
6#pragma once
7#include <aws/core/utils/UUID.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/evs/EVSRequest.h>
10#include <aws/evs/EVS_EXPORTS.h>
11
12#include <utility>
13
14namespace Aws {
15namespace EVS {
16namespace Model {
17
21 public:
22 AWS_EVS_API DisassociateEipFromVlanRequest() = default;
23
24 // Service request name is the Operation name which will send this request out,
25 // each operation should has unique request name, so that we can get operation's name from this request.
26 // Note: this is not true for response, multiple operations may have the same response name,
27 // so we can not get operation's name from response.
28 inline virtual const char* GetServiceRequestName() const override { return "DisassociateEipFromVlan"; }
29
30 AWS_EVS_API Aws::String SerializePayload() const override;
31
33
35
42 inline const Aws::String& GetClientToken() const { return m_clientToken; }
43 inline bool ClientTokenHasBeenSet() const { return m_clientTokenHasBeenSet; }
44 template <typename ClientTokenT = Aws::String>
45 void SetClientToken(ClientTokenT&& value) {
46 m_clientTokenHasBeenSet = true;
47 m_clientToken = std::forward<ClientTokenT>(value);
48 }
49 template <typename ClientTokenT = Aws::String>
51 SetClientToken(std::forward<ClientTokenT>(value));
52 return *this;
53 }
55
57
61 inline const Aws::String& GetEnvironmentId() const { return m_environmentId; }
62 inline bool EnvironmentIdHasBeenSet() const { return m_environmentIdHasBeenSet; }
63 template <typename EnvironmentIdT = Aws::String>
64 void SetEnvironmentId(EnvironmentIdT&& value) {
65 m_environmentIdHasBeenSet = true;
66 m_environmentId = std::forward<EnvironmentIdT>(value);
67 }
68 template <typename EnvironmentIdT = Aws::String>
70 SetEnvironmentId(std::forward<EnvironmentIdT>(value));
71 return *this;
72 }
74
76
80 inline const Aws::String& GetVlanName() const { return m_vlanName; }
81 inline bool VlanNameHasBeenSet() const { return m_vlanNameHasBeenSet; }
82 template <typename VlanNameT = Aws::String>
83 void SetVlanName(VlanNameT&& value) {
84 m_vlanNameHasBeenSet = true;
85 m_vlanName = std::forward<VlanNameT>(value);
86 }
87 template <typename VlanNameT = Aws::String>
89 SetVlanName(std::forward<VlanNameT>(value));
90 return *this;
91 }
93
95
98 inline const Aws::String& GetAssociationId() const { return m_associationId; }
99 inline bool AssociationIdHasBeenSet() const { return m_associationIdHasBeenSet; }
100 template <typename AssociationIdT = Aws::String>
101 void SetAssociationId(AssociationIdT&& value) {
102 m_associationIdHasBeenSet = true;
103 m_associationId = std::forward<AssociationIdT>(value);
104 }
105 template <typename AssociationIdT = Aws::String>
107 SetAssociationId(std::forward<AssociationIdT>(value));
108 return *this;
109 }
111 private:
113
114 Aws::String m_environmentId;
115
116 Aws::String m_vlanName;
117
118 Aws::String m_associationId;
119 bool m_clientTokenHasBeenSet = true;
120 bool m_environmentIdHasBeenSet = false;
121 bool m_vlanNameHasBeenSet = false;
122 bool m_associationIdHasBeenSet = false;
123};
124
125} // namespace Model
126} // namespace EVS
127} // namespace Aws
virtual const char * GetServiceRequestName() const override
DisassociateEipFromVlanRequest & WithClientToken(ClientTokenT &&value)
DisassociateEipFromVlanRequest & WithEnvironmentId(EnvironmentIdT &&value)
AWS_EVS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
DisassociateEipFromVlanRequest & WithVlanName(VlanNameT &&value)
AWS_EVS_API Aws::String SerializePayload() const override
DisassociateEipFromVlanRequest & WithAssociationId(AssociationIdT &&value)
static Aws::Utils::UUID PseudoRandomUUID()
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String