AWS SDK for C++

AWS SDK for C++ Version 1.11.612

Loading...
Searching...
No Matches
GetIdentityDkimAttributesRequest.h
1
6#pragma once
7#include <aws/email/SES_EXPORTS.h>
8#include <aws/email/SESRequest.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <utility>
12
13namespace Aws
14{
15namespace SES
16{
17namespace Model
18{
19
32 {
33 public:
34 AWS_SES_API GetIdentityDkimAttributesRequest() = default;
35
36 // Service request name is the Operation name which will send this request out,
37 // each operation should has unique request name, so that we can get operation's name from this request.
38 // Note: this is not true for response, multiple operations may have the same response name,
39 // so we can not get operation's name from response.
40 inline virtual const char* GetServiceRequestName() const override { return "GetIdentityDkimAttributes"; }
41
42 AWS_SES_API Aws::String SerializePayload() const override;
43
44 protected:
45 AWS_SES_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
46
47 public:
48
50
54 inline const Aws::Vector<Aws::String>& GetIdentities() const { return m_identities; }
55 inline bool IdentitiesHasBeenSet() const { return m_identitiesHasBeenSet; }
56 template<typename IdentitiesT = Aws::Vector<Aws::String>>
57 void SetIdentities(IdentitiesT&& value) { m_identitiesHasBeenSet = true; m_identities = std::forward<IdentitiesT>(value); }
58 template<typename IdentitiesT = Aws::Vector<Aws::String>>
59 GetIdentityDkimAttributesRequest& WithIdentities(IdentitiesT&& value) { SetIdentities(std::forward<IdentitiesT>(value)); return *this;}
60 template<typename IdentitiesT = Aws::String>
61 GetIdentityDkimAttributesRequest& AddIdentities(IdentitiesT&& value) { m_identitiesHasBeenSet = true; m_identities.emplace_back(std::forward<IdentitiesT>(value)); return *this; }
63 private:
64
65 Aws::Vector<Aws::String> m_identities;
66 bool m_identitiesHasBeenSet = false;
67 };
68
69} // namespace Model
70} // namespace SES
71} // namespace Aws
AWS_SES_API Aws::String SerializePayload() const override
GetIdentityDkimAttributesRequest & WithIdentities(IdentitiesT &&value)
GetIdentityDkimAttributesRequest & AddIdentities(IdentitiesT &&value)
AWS_SES_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector