AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DeleteVpcEndpointConnectionNotificationsRequest.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/AWSVector.h>
10#include <aws/core/utils/memory/stl/AWSString.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 "DeleteVpcEndpointConnectionNotifications"; }
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
47 inline bool GetDryRun() const { return m_dryRun; }
48 inline bool DryRunHasBeenSet() const { return m_dryRunHasBeenSet; }
49 inline void SetDryRun(bool value) { m_dryRunHasBeenSet = true; m_dryRun = value; }
50 inline DeleteVpcEndpointConnectionNotificationsRequest& WithDryRun(bool value) { SetDryRun(value); return *this;}
52
54
57 inline const Aws::Vector<Aws::String>& GetConnectionNotificationIds() const { return m_connectionNotificationIds; }
58 inline bool ConnectionNotificationIdsHasBeenSet() const { return m_connectionNotificationIdsHasBeenSet; }
59 template<typename ConnectionNotificationIdsT = Aws::Vector<Aws::String>>
60 void SetConnectionNotificationIds(ConnectionNotificationIdsT&& value) { m_connectionNotificationIdsHasBeenSet = true; m_connectionNotificationIds = std::forward<ConnectionNotificationIdsT>(value); }
61 template<typename ConnectionNotificationIdsT = Aws::Vector<Aws::String>>
62 DeleteVpcEndpointConnectionNotificationsRequest& WithConnectionNotificationIds(ConnectionNotificationIdsT&& value) { SetConnectionNotificationIds(std::forward<ConnectionNotificationIdsT>(value)); return *this;}
63 template<typename ConnectionNotificationIdsT = Aws::String>
64 DeleteVpcEndpointConnectionNotificationsRequest& AddConnectionNotificationIds(ConnectionNotificationIdsT&& value) { m_connectionNotificationIdsHasBeenSet = true; m_connectionNotificationIds.emplace_back(std::forward<ConnectionNotificationIdsT>(value)); return *this; }
66 private:
67
68 bool m_dryRun{false};
69 bool m_dryRunHasBeenSet = false;
70
71 Aws::Vector<Aws::String> m_connectionNotificationIds;
72 bool m_connectionNotificationIdsHasBeenSet = false;
73 };
74
75} // namespace Model
76} // namespace EC2
77} // namespace Aws
DeleteVpcEndpointConnectionNotificationsRequest & WithConnectionNotificationIds(ConnectionNotificationIdsT &&value)
DeleteVpcEndpointConnectionNotificationsRequest & AddConnectionNotificationIds(ConnectionNotificationIdsT &&value)
AWS_EC2_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
AWS_EC2_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector