AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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:
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 inline void SetIdentities(const Aws::Vector<Aws::String>& value) { m_identitiesHasBeenSet = true; m_identities = value; }
57 inline void SetIdentities(Aws::Vector<Aws::String>&& value) { m_identitiesHasBeenSet = true; m_identities = std::move(value); }
60 inline GetIdentityDkimAttributesRequest& AddIdentities(const Aws::String& value) { m_identitiesHasBeenSet = true; m_identities.push_back(value); return *this; }
61 inline GetIdentityDkimAttributesRequest& AddIdentities(Aws::String&& value) { m_identitiesHasBeenSet = true; m_identities.push_back(std::move(value)); return *this; }
62 inline GetIdentityDkimAttributesRequest& AddIdentities(const char* value) { m_identitiesHasBeenSet = true; m_identities.push_back(value); return *this; }
64 private:
65
66 Aws::Vector<Aws::String> m_identities;
67 bool m_identitiesHasBeenSet = false;
68 };
69
70} // namespace Model
71} // namespace SES
72} // namespace Aws
AWS_SES_API Aws::String SerializePayload() const override
GetIdentityDkimAttributesRequest & WithIdentities(const Aws::Vector< Aws::String > &value)
GetIdentityDkimAttributesRequest & AddIdentities(const char *value)
AWS_SES_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
GetIdentityDkimAttributesRequest & WithIdentities(Aws::Vector< Aws::String > &&value)
GetIdentityDkimAttributesRequest & AddIdentities(Aws::String &&value)
void SetIdentities(const Aws::Vector< Aws::String > &value)
GetIdentityDkimAttributesRequest & AddIdentities(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector