AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DisassociateManagedNotificationAdditionalChannelRequest.h
1
6#pragma once
7#include <aws/notifications/Notifications_EXPORTS.h>
8#include <aws/notifications/NotificationsRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Notifications
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 "DisassociateManagedNotificationAdditionalChannel"; }
31
32 AWS_NOTIFICATIONS_API Aws::String SerializePayload() const override;
33
34
36
40 inline const Aws::String& GetChannelArn() const { return m_channelArn; }
41 inline bool ChannelArnHasBeenSet() const { return m_channelArnHasBeenSet; }
42 template<typename ChannelArnT = Aws::String>
43 void SetChannelArn(ChannelArnT&& value) { m_channelArnHasBeenSet = true; m_channelArn = std::forward<ChannelArnT>(value); }
44 template<typename ChannelArnT = Aws::String>
45 DisassociateManagedNotificationAdditionalChannelRequest& WithChannelArn(ChannelArnT&& value) { SetChannelArn(std::forward<ChannelArnT>(value)); return *this;}
47
49
53 inline const Aws::String& GetManagedNotificationConfigurationArn() const { return m_managedNotificationConfigurationArn; }
54 inline bool ManagedNotificationConfigurationArnHasBeenSet() const { return m_managedNotificationConfigurationArnHasBeenSet; }
55 template<typename ManagedNotificationConfigurationArnT = Aws::String>
56 void SetManagedNotificationConfigurationArn(ManagedNotificationConfigurationArnT&& value) { m_managedNotificationConfigurationArnHasBeenSet = true; m_managedNotificationConfigurationArn = std::forward<ManagedNotificationConfigurationArnT>(value); }
57 template<typename ManagedNotificationConfigurationArnT = Aws::String>
58 DisassociateManagedNotificationAdditionalChannelRequest& WithManagedNotificationConfigurationArn(ManagedNotificationConfigurationArnT&& value) { SetManagedNotificationConfigurationArn(std::forward<ManagedNotificationConfigurationArnT>(value)); return *this;}
60 private:
61
62 Aws::String m_channelArn;
63 bool m_channelArnHasBeenSet = false;
64
65 Aws::String m_managedNotificationConfigurationArn;
66 bool m_managedNotificationConfigurationArnHasBeenSet = false;
67 };
68
69} // namespace Model
70} // namespace Notifications
71} // namespace Aws
DisassociateManagedNotificationAdditionalChannelRequest & WithManagedNotificationConfigurationArn(ManagedNotificationConfigurationArnT &&value)
AWS_NOTIFICATIONS_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String