AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
NotifyAppValidationOutputRequest.h
1
6#pragma once
7#include <aws/sms/SMS_EXPORTS.h>
8#include <aws/sms/SMSRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/sms/model/NotificationContext.h>
11#include <utility>
12
13namespace Aws
14{
15namespace SMS
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_SMS_API NotifyAppValidationOutputRequest() = default;
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 "NotifyAppValidationOutput"; }
32
33 AWS_SMS_API Aws::String SerializePayload() const override;
34
36
37
39
42 inline const Aws::String& GetAppId() const { return m_appId; }
43 inline bool AppIdHasBeenSet() const { return m_appIdHasBeenSet; }
44 template<typename AppIdT = Aws::String>
45 void SetAppId(AppIdT&& value) { m_appIdHasBeenSet = true; m_appId = std::forward<AppIdT>(value); }
46 template<typename AppIdT = Aws::String>
47 NotifyAppValidationOutputRequest& WithAppId(AppIdT&& value) { SetAppId(std::forward<AppIdT>(value)); return *this;}
49
51
54 inline const NotificationContext& GetNotificationContext() const { return m_notificationContext; }
55 inline bool NotificationContextHasBeenSet() const { return m_notificationContextHasBeenSet; }
56 template<typename NotificationContextT = NotificationContext>
57 void SetNotificationContext(NotificationContextT&& value) { m_notificationContextHasBeenSet = true; m_notificationContext = std::forward<NotificationContextT>(value); }
58 template<typename NotificationContextT = NotificationContext>
59 NotifyAppValidationOutputRequest& WithNotificationContext(NotificationContextT&& value) { SetNotificationContext(std::forward<NotificationContextT>(value)); return *this;}
61 private:
62
63 Aws::String m_appId;
64 bool m_appIdHasBeenSet = false;
65
66 NotificationContext m_notificationContext;
67 bool m_notificationContextHasBeenSet = false;
68 };
69
70} // namespace Model
71} // namespace SMS
72} // namespace Aws
NotifyAppValidationOutputRequest & WithAppId(AppIdT &&value)
AWS_SMS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
NotifyAppValidationOutputRequest & WithNotificationContext(NotificationContextT &&value)
AWS_SMS_API Aws::String SerializePayload() const override
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String