1 /**
2  * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3  * SPDX-License-Identifier: Apache-2.0.
4  */
5 
6 #pragma once
7 #include <aws/email/SES_EXPORTS.h>
8 #include <aws/email/SESRequest.h>
9 
10 namespace Aws
11 {
12 namespace SES
13 {
14 namespace Model
15 {
16 
17   /**
18    * <p>Represents a request to return the metadata and receipt rules for the receipt
19    * rule set that is currently active. You use receipt rule sets to receive email
20    * with Amazon SES. For more information, see the <a
21    * href="https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html">Amazon
22    * SES Developer Guide</a>.</p><p><h3>See Also:</h3>   <a
23    * href="http://docs.aws.amazon.com/goto/WebAPI/email-2010-12-01/DescribeActiveReceiptRuleSetRequest">AWS
24    * API Reference</a></p>
25    */
26   class AWS_SES_API DescribeActiveReceiptRuleSetRequest : public SESRequest
27   {
28   public:
29     DescribeActiveReceiptRuleSetRequest();
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.
GetServiceRequestName()35     inline virtual const char* GetServiceRequestName() const override { return "DescribeActiveReceiptRuleSet"; }
36 
37     Aws::String SerializePayload() const override;
38 
39   protected:
40     void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
41 
42   public:
43   };
44 
45 } // namespace Model
46 } // namespace SES
47 } // namespace Aws
48