AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
PutConfigurationSetVdmOptionsRequest.h
1
6#pragma once
7#include <aws/sesv2/SESV2_EXPORTS.h>
8#include <aws/sesv2/SESV2Request.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/sesv2/model/VdmOptions.h>
11#include <utility>
12
13namespace Aws
14{
15namespace SESV2
16{
17namespace Model
18{
19
27 {
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 "PutConfigurationSetVdmOptions"; }
36
37 AWS_SESV2_API Aws::String SerializePayload() const override;
38
39
41
44 inline const Aws::String& GetConfigurationSetName() const{ return m_configurationSetName; }
45 inline bool ConfigurationSetNameHasBeenSet() const { return m_configurationSetNameHasBeenSet; }
46 inline void SetConfigurationSetName(const Aws::String& value) { m_configurationSetNameHasBeenSet = true; m_configurationSetName = value; }
47 inline void SetConfigurationSetName(Aws::String&& value) { m_configurationSetNameHasBeenSet = true; m_configurationSetName = std::move(value); }
48 inline void SetConfigurationSetName(const char* value) { m_configurationSetNameHasBeenSet = true; m_configurationSetName.assign(value); }
53
55
58 inline const VdmOptions& GetVdmOptions() const{ return m_vdmOptions; }
59 inline bool VdmOptionsHasBeenSet() const { return m_vdmOptionsHasBeenSet; }
60 inline void SetVdmOptions(const VdmOptions& value) { m_vdmOptionsHasBeenSet = true; m_vdmOptions = value; }
61 inline void SetVdmOptions(VdmOptions&& value) { m_vdmOptionsHasBeenSet = true; m_vdmOptions = std::move(value); }
62 inline PutConfigurationSetVdmOptionsRequest& WithVdmOptions(const VdmOptions& value) { SetVdmOptions(value); return *this;}
63 inline PutConfigurationSetVdmOptionsRequest& WithVdmOptions(VdmOptions&& value) { SetVdmOptions(std::move(value)); return *this;}
65 private:
66
67 Aws::String m_configurationSetName;
68 bool m_configurationSetNameHasBeenSet = false;
69
70 VdmOptions m_vdmOptions;
71 bool m_vdmOptionsHasBeenSet = false;
72 };
73
74} // namespace Model
75} // namespace SESV2
76} // namespace Aws
PutConfigurationSetVdmOptionsRequest & WithConfigurationSetName(const char *value)
PutConfigurationSetVdmOptionsRequest & WithVdmOptions(const VdmOptions &value)
AWS_SESV2_API Aws::String SerializePayload() const override
PutConfigurationSetVdmOptionsRequest & WithVdmOptions(VdmOptions &&value)
PutConfigurationSetVdmOptionsRequest & WithConfigurationSetName(Aws::String &&value)
PutConfigurationSetVdmOptionsRequest & WithConfigurationSetName(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String