AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
ConfirmSubscriptionRequest.h
1
6#pragma once
7#include <aws/sns/SNS_EXPORTS.h>
8#include <aws/sns/SNSRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace SNS
15{
16namespace Model
17{
18
25 {
26 public:
27 AWS_SNS_API ConfirmSubscriptionRequest() = default;
28
29 // Service request name is the Operation name which will send this request out,
30 // each operation should has unique request name, so that we can get operation's name from this request.
31 // Note: this is not true for response, multiple operations may have the same response name,
32 // so we can not get operation's name from response.
33 inline virtual const char* GetServiceRequestName() const override { return "ConfirmSubscription"; }
34
35 AWS_SNS_API Aws::String SerializePayload() const override;
36
37 protected:
38 AWS_SNS_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
39
40 public:
41
43
46 inline const Aws::String& GetTopicArn() const { return m_topicArn; }
47 inline bool TopicArnHasBeenSet() const { return m_topicArnHasBeenSet; }
48 template<typename TopicArnT = Aws::String>
49 void SetTopicArn(TopicArnT&& value) { m_topicArnHasBeenSet = true; m_topicArn = std::forward<TopicArnT>(value); }
50 template<typename TopicArnT = Aws::String>
51 ConfirmSubscriptionRequest& WithTopicArn(TopicArnT&& value) { SetTopicArn(std::forward<TopicArnT>(value)); return *this;}
53
55
59 inline const Aws::String& GetToken() const { return m_token; }
60 inline bool TokenHasBeenSet() const { return m_tokenHasBeenSet; }
61 template<typename TokenT = Aws::String>
62 void SetToken(TokenT&& value) { m_tokenHasBeenSet = true; m_token = std::forward<TokenT>(value); }
63 template<typename TokenT = Aws::String>
64 ConfirmSubscriptionRequest& WithToken(TokenT&& value) { SetToken(std::forward<TokenT>(value)); return *this;}
66
68
75 inline const Aws::String& GetAuthenticateOnUnsubscribe() const { return m_authenticateOnUnsubscribe; }
76 inline bool AuthenticateOnUnsubscribeHasBeenSet() const { return m_authenticateOnUnsubscribeHasBeenSet; }
77 template<typename AuthenticateOnUnsubscribeT = Aws::String>
78 void SetAuthenticateOnUnsubscribe(AuthenticateOnUnsubscribeT&& value) { m_authenticateOnUnsubscribeHasBeenSet = true; m_authenticateOnUnsubscribe = std::forward<AuthenticateOnUnsubscribeT>(value); }
79 template<typename AuthenticateOnUnsubscribeT = Aws::String>
80 ConfirmSubscriptionRequest& WithAuthenticateOnUnsubscribe(AuthenticateOnUnsubscribeT&& value) { SetAuthenticateOnUnsubscribe(std::forward<AuthenticateOnUnsubscribeT>(value)); return *this;}
82 private:
83
84 Aws::String m_topicArn;
85 bool m_topicArnHasBeenSet = false;
86
87 Aws::String m_token;
88 bool m_tokenHasBeenSet = false;
89
90 Aws::String m_authenticateOnUnsubscribe;
91 bool m_authenticateOnUnsubscribeHasBeenSet = false;
92 };
93
94} // namespace Model
95} // namespace SNS
96} // namespace Aws
AWS_SNS_API ConfirmSubscriptionRequest()=default
AWS_SNS_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
ConfirmSubscriptionRequest & WithTopicArn(TopicArnT &&value)
ConfirmSubscriptionRequest & WithAuthenticateOnUnsubscribe(AuthenticateOnUnsubscribeT &&value)
AWS_SNS_API Aws::String SerializePayload() const override
virtual const char * GetServiceRequestName() const override
void SetAuthenticateOnUnsubscribe(AuthenticateOnUnsubscribeT &&value)
ConfirmSubscriptionRequest & WithToken(TokenT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String