AWS SDK for C++

AWS SDK for C++ Version 1.11.767

Loading...
Searching...
No Matches
DescribeReceiptRuleRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/email/SESRequest.h>
9#include <aws/email/SES_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace SES {
15namespace Model {
16
26 public:
27 AWS_SES_API DescribeReceiptRuleRequest() = default;
28
29 // Service request name is the Operation name which will send this request out,
30 // each operation should has unique request name, so that we can get operation's name from this request.
31 // Note: this is not true for response, multiple operations may have the same response name,
32 // so we can not get operation's name from response.
33 inline virtual const char* GetServiceRequestName() const override { return "DescribeReceiptRule"; }
34
35 AWS_SES_API Aws::String SerializePayload() const override;
36
37 protected:
38 AWS_SES_API void DumpBodyToUrl(Aws::Http::URI& uri) const override;
39
40 public:
42
45 inline const Aws::String& GetRuleSetName() const { return m_ruleSetName; }
46 inline bool RuleSetNameHasBeenSet() const { return m_ruleSetNameHasBeenSet; }
47 template <typename RuleSetNameT = Aws::String>
48 void SetRuleSetName(RuleSetNameT&& value) {
49 m_ruleSetNameHasBeenSet = true;
50 m_ruleSetName = std::forward<RuleSetNameT>(value);
51 }
52 template <typename RuleSetNameT = Aws::String>
54 SetRuleSetName(std::forward<RuleSetNameT>(value));
55 return *this;
56 }
58
60
63 inline const Aws::String& GetRuleName() const { return m_ruleName; }
64 inline bool RuleNameHasBeenSet() const { return m_ruleNameHasBeenSet; }
65 template <typename RuleNameT = Aws::String>
66 void SetRuleName(RuleNameT&& value) {
67 m_ruleNameHasBeenSet = true;
68 m_ruleName = std::forward<RuleNameT>(value);
69 }
70 template <typename RuleNameT = Aws::String>
72 SetRuleName(std::forward<RuleNameT>(value));
73 return *this;
74 }
76 private:
77 Aws::String m_ruleSetName;
78
79 Aws::String m_ruleName;
80 bool m_ruleSetNameHasBeenSet = false;
81 bool m_ruleNameHasBeenSet = false;
82};
83
84} // namespace Model
85} // namespace SES
86} // namespace Aws
virtual const char * GetServiceRequestName() const override
DescribeReceiptRuleRequest & WithRuleName(RuleNameT &&value)
AWS_SES_API Aws::String SerializePayload() const override
AWS_SES_API DescribeReceiptRuleRequest()=default
DescribeReceiptRuleRequest & WithRuleSetName(RuleSetNameT &&value)
AWS_SES_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String