AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
UpdateConfigurationSetEventDestinationRequest.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/AWSString.h>
10#include <aws/email/model/EventDestination.h>
11#include <utility>
12
13namespace Aws
14{
15namespace SES
16{
17namespace Model
18{
19
30 {
31 public:
33
34 // Service request name is the Operation name which will send this request out,
35 // each operation should has unique request name, so that we can get operation's name from this request.
36 // Note: this is not true for response, multiple operations may have the same response name,
37 // so we can not get operation's name from response.
38 inline virtual const char* GetServiceRequestName() const override { return "UpdateConfigurationSetEventDestination"; }
39
40 AWS_SES_API Aws::String SerializePayload() const override;
41
42 protected:
43 AWS_SES_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
44
45 public:
46
48
51 inline const Aws::String& GetConfigurationSetName() const{ return m_configurationSetName; }
52 inline bool ConfigurationSetNameHasBeenSet() const { return m_configurationSetNameHasBeenSet; }
53 inline void SetConfigurationSetName(const Aws::String& value) { m_configurationSetNameHasBeenSet = true; m_configurationSetName = value; }
54 inline void SetConfigurationSetName(Aws::String&& value) { m_configurationSetNameHasBeenSet = true; m_configurationSetName = std::move(value); }
55 inline void SetConfigurationSetName(const char* value) { m_configurationSetNameHasBeenSet = true; m_configurationSetName.assign(value); }
60
62
65 inline const EventDestination& GetEventDestination() const{ return m_eventDestination; }
66 inline bool EventDestinationHasBeenSet() const { return m_eventDestinationHasBeenSet; }
67 inline void SetEventDestination(const EventDestination& value) { m_eventDestinationHasBeenSet = true; m_eventDestination = value; }
68 inline void SetEventDestination(EventDestination&& value) { m_eventDestinationHasBeenSet = true; m_eventDestination = std::move(value); }
72 private:
73
74 Aws::String m_configurationSetName;
75 bool m_configurationSetNameHasBeenSet = false;
76
77 EventDestination m_eventDestination;
78 bool m_eventDestinationHasBeenSet = false;
79 };
80
81} // namespace Model
82} // namespace SES
83} // namespace Aws
AWS_SES_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
UpdateConfigurationSetEventDestinationRequest & WithConfigurationSetName(const Aws::String &value)
UpdateConfigurationSetEventDestinationRequest & WithConfigurationSetName(Aws::String &&value)
UpdateConfigurationSetEventDestinationRequest & WithEventDestination(EventDestination &&value)
UpdateConfigurationSetEventDestinationRequest & WithConfigurationSetName(const char *value)
AWS_SES_API Aws::String SerializePayload() const override
UpdateConfigurationSetEventDestinationRequest & WithEventDestination(const EventDestination &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String