AWS SDK for C++

AWS SDK for C++ Version 1.11.767

Loading...
Searching...
No Matches
DescribeConfigurationSetRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/email/SESRequest.h>
10#include <aws/email/SES_EXPORTS.h>
11#include <aws/email/model/ConfigurationSetAttribute.h>
12
13#include <utility>
14
15namespace Aws {
16namespace SES {
17namespace Model {
18
29 public:
30 AWS_SES_API DescribeConfigurationSetRequest() = default;
31
32 // Service request name is the Operation name which will send this request out,
33 // each operation should has unique request name, so that we can get operation's name from this request.
34 // Note: this is not true for response, multiple operations may have the same response name,
35 // so we can not get operation's name from response.
36 inline virtual const char* GetServiceRequestName() const override { return "DescribeConfigurationSet"; }
37
38 AWS_SES_API Aws::String SerializePayload() const override;
39
40 protected:
41 AWS_SES_API void DumpBodyToUrl(Aws::Http::URI& uri) const override;
42
43 public:
45
48 inline const Aws::String& GetConfigurationSetName() const { return m_configurationSetName; }
49 inline bool ConfigurationSetNameHasBeenSet() const { return m_configurationSetNameHasBeenSet; }
50 template <typename ConfigurationSetNameT = Aws::String>
51 void SetConfigurationSetName(ConfigurationSetNameT&& value) {
52 m_configurationSetNameHasBeenSet = true;
53 m_configurationSetName = std::forward<ConfigurationSetNameT>(value);
54 }
55 template <typename ConfigurationSetNameT = Aws::String>
57 SetConfigurationSetName(std::forward<ConfigurationSetNameT>(value));
58 return *this;
59 }
61
63
67 return m_configurationSetAttributeNames;
68 }
69 inline bool ConfigurationSetAttributeNamesHasBeenSet() const { return m_configurationSetAttributeNamesHasBeenSet; }
70 template <typename ConfigurationSetAttributeNamesT = Aws::Vector<ConfigurationSetAttribute>>
71 void SetConfigurationSetAttributeNames(ConfigurationSetAttributeNamesT&& value) {
72 m_configurationSetAttributeNamesHasBeenSet = true;
73 m_configurationSetAttributeNames = std::forward<ConfigurationSetAttributeNamesT>(value);
74 }
75 template <typename ConfigurationSetAttributeNamesT = Aws::Vector<ConfigurationSetAttribute>>
76 DescribeConfigurationSetRequest& WithConfigurationSetAttributeNames(ConfigurationSetAttributeNamesT&& value) {
77 SetConfigurationSetAttributeNames(std::forward<ConfigurationSetAttributeNamesT>(value));
78 return *this;
79 }
81 m_configurationSetAttributeNamesHasBeenSet = true;
82 m_configurationSetAttributeNames.push_back(value);
83 return *this;
84 }
86 private:
87 Aws::String m_configurationSetName;
88
89 Aws::Vector<ConfigurationSetAttribute> m_configurationSetAttributeNames;
90 bool m_configurationSetNameHasBeenSet = false;
91 bool m_configurationSetAttributeNamesHasBeenSet = false;
92};
93
94} // namespace Model
95} // namespace SES
96} // namespace Aws
const Aws::Vector< ConfigurationSetAttribute > & GetConfigurationSetAttributeNames() const
AWS_SES_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
DescribeConfigurationSetRequest & AddConfigurationSetAttributeNames(ConfigurationSetAttribute value)
DescribeConfigurationSetRequest & WithConfigurationSetAttributeNames(ConfigurationSetAttributeNamesT &&value)
AWS_SES_API Aws::String SerializePayload() const override
void SetConfigurationSetAttributeNames(ConfigurationSetAttributeNamesT &&value)
DescribeConfigurationSetRequest & WithConfigurationSetName(ConfigurationSetNameT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector