AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
CreateConfigurationSetRequest.h
1
6#pragma once
7#include <aws/email/SES_EXPORTS.h>
8#include <aws/email/SESRequest.h>
9#include <aws/email/model/ConfigurationSet.h>
10#include <utility>
11
12namespace Aws
13{
14namespace SES
15{
16namespace Model
17{
18
29 {
30 public:
32
33 // Service request name is the Operation name which will send this request out,
34 // each operation should has unique request name, so that we can get operation's name from this request.
35 // Note: this is not true for response, multiple operations may have the same response name,
36 // so we can not get operation's name from response.
37 inline virtual const char* GetServiceRequestName() const override { return "CreateConfigurationSet"; }
38
39 AWS_SES_API Aws::String SerializePayload() const override;
40
41 protected:
42 AWS_SES_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
43
44 public:
45
47
50 inline const ConfigurationSet& GetConfigurationSet() const{ return m_configurationSet; }
51 inline bool ConfigurationSetHasBeenSet() const { return m_configurationSetHasBeenSet; }
52 inline void SetConfigurationSet(const ConfigurationSet& value) { m_configurationSetHasBeenSet = true; m_configurationSet = value; }
53 inline void SetConfigurationSet(ConfigurationSet&& value) { m_configurationSetHasBeenSet = true; m_configurationSet = std::move(value); }
57 private:
58
59 ConfigurationSet m_configurationSet;
60 bool m_configurationSetHasBeenSet = false;
61 };
62
63} // namespace Model
64} // namespace SES
65} // namespace Aws
CreateConfigurationSetRequest & WithConfigurationSet(const ConfigurationSet &value)
CreateConfigurationSetRequest & WithConfigurationSet(ConfigurationSet &&value)
virtual const char * GetServiceRequestName() const override
AWS_SES_API Aws::String SerializePayload() const override
AWS_SES_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String