AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
GetManagedNotificationChildEventRequest.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 <aws/notifications/model/LocaleCode.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Http
16{
17 class URI;
18} //namespace Http
19namespace Notifications
20{
21namespace Model
22{
23
27 {
28 public:
29 AWS_NOTIFICATIONS_API GetManagedNotificationChildEventRequest() = default;
30
31 // Service request name is the Operation name which will send this request out,
32 // each operation should has unique request name, so that we can get operation's name from this request.
33 // Note: this is not true for response, multiple operations may have the same response name,
34 // so we can not get operation's name from response.
35 inline virtual const char* GetServiceRequestName() const override { return "GetManagedNotificationChildEvent"; }
36
37 AWS_NOTIFICATIONS_API Aws::String SerializePayload() const override;
38
39 AWS_NOTIFICATIONS_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
40
41
43
47 inline const Aws::String& GetArn() const { return m_arn; }
48 inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; }
49 template<typename ArnT = Aws::String>
50 void SetArn(ArnT&& value) { m_arnHasBeenSet = true; m_arn = std::forward<ArnT>(value); }
51 template<typename ArnT = Aws::String>
52 GetManagedNotificationChildEventRequest& WithArn(ArnT&& value) { SetArn(std::forward<ArnT>(value)); return *this;}
54
56
61 inline LocaleCode GetLocale() const { return m_locale; }
62 inline bool LocaleHasBeenSet() const { return m_localeHasBeenSet; }
63 inline void SetLocale(LocaleCode value) { m_localeHasBeenSet = true; m_locale = value; }
66 private:
67
68 Aws::String m_arn;
69 bool m_arnHasBeenSet = false;
70
72 bool m_localeHasBeenSet = false;
73 };
74
75} // namespace Model
76} // namespace Notifications
77} // namespace Aws
AWS_NOTIFICATIONS_API Aws::String SerializePayload() const override
AWS_NOTIFICATIONS_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String