AWS SDK for C++

AWS SDK for C++ Version 1.11.716

Loading...
Searching...
No Matches
DeleteSecurityGroupRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/wickr/WickrRequest.h>
9#include <aws/wickr/Wickr_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Wickr {
15namespace Model {
16
20 public:
21 AWS_WICKR_API DeleteSecurityGroupRequest() = default;
22
23 // Service request name is the Operation name which will send this request out,
24 // each operation should has unique request name, so that we can get operation's name from this request.
25 // Note: this is not true for response, multiple operations may have the same response name,
26 // so we can not get operation's name from response.
27 inline virtual const char* GetServiceRequestName() const override { return "DeleteSecurityGroup"; }
28
29 AWS_WICKR_API Aws::String SerializePayload() const override;
30
32
36 inline const Aws::String& GetNetworkId() const { return m_networkId; }
37 inline bool NetworkIdHasBeenSet() const { return m_networkIdHasBeenSet; }
38 template <typename NetworkIdT = Aws::String>
39 void SetNetworkId(NetworkIdT&& value) {
40 m_networkIdHasBeenSet = true;
41 m_networkId = std::forward<NetworkIdT>(value);
42 }
43 template <typename NetworkIdT = Aws::String>
45 SetNetworkId(std::forward<NetworkIdT>(value));
46 return *this;
47 }
49
51
54 inline const Aws::String& GetGroupId() const { return m_groupId; }
55 inline bool GroupIdHasBeenSet() const { return m_groupIdHasBeenSet; }
56 template <typename GroupIdT = Aws::String>
57 void SetGroupId(GroupIdT&& value) {
58 m_groupIdHasBeenSet = true;
59 m_groupId = std::forward<GroupIdT>(value);
60 }
61 template <typename GroupIdT = Aws::String>
63 SetGroupId(std::forward<GroupIdT>(value));
64 return *this;
65 }
67 private:
68 Aws::String m_networkId;
69
70 Aws::String m_groupId;
71 bool m_networkIdHasBeenSet = false;
72 bool m_groupIdHasBeenSet = false;
73};
74
75} // namespace Model
76} // namespace Wickr
77} // namespace Aws
AWS_WICKR_API DeleteSecurityGroupRequest()=default
DeleteSecurityGroupRequest & WithGroupId(GroupIdT &&value)
DeleteSecurityGroupRequest & WithNetworkId(NetworkIdT &&value)
virtual const char * GetServiceRequestName() const override
AWS_WICKR_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String