AWS SDK for C++

AWS SDK for C++ Version 1.11.767

Loading...
Searching...
No Matches
GetIdentityNotificationAttributesRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/email/SESRequest.h>
10#include <aws/email/SES_EXPORTS.h>
11
12#include <utility>
13
14namespace Aws {
15namespace SES {
16namespace Model {
17
28 public:
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 "GetIdentityNotificationAttributes"; }
36
37 AWS_SES_API Aws::String SerializePayload() const override;
38
39 protected:
40 AWS_SES_API void DumpBodyToUrl(Aws::Http::URI& uri) const override;
41
42 public:
44
50 inline const Aws::Vector<Aws::String>& GetIdentities() const { return m_identities; }
51 inline bool IdentitiesHasBeenSet() const { return m_identitiesHasBeenSet; }
52 template <typename IdentitiesT = Aws::Vector<Aws::String>>
53 void SetIdentities(IdentitiesT&& value) {
54 m_identitiesHasBeenSet = true;
55 m_identities = std::forward<IdentitiesT>(value);
56 }
57 template <typename IdentitiesT = Aws::Vector<Aws::String>>
59 SetIdentities(std::forward<IdentitiesT>(value));
60 return *this;
61 }
62 template <typename IdentitiesT = Aws::String>
64 m_identitiesHasBeenSet = true;
65 m_identities.emplace_back(std::forward<IdentitiesT>(value));
66 return *this;
67 }
69 private:
70 Aws::Vector<Aws::String> m_identities;
71 bool m_identitiesHasBeenSet = false;
72};
73
74} // namespace Model
75} // namespace SES
76} // namespace Aws
AWS_SES_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
AWS_SES_API Aws::String SerializePayload() const override
GetIdentityNotificationAttributesRequest & WithIdentities(IdentitiesT &&value)
GetIdentityNotificationAttributesRequest & AddIdentities(IdentitiesT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector