AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Container for the parameters to the UpdateReceiptRule operation. Updates a receipt rule.

For information about managing receipt rules, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceRequest
    Amazon.SimpleEmail.AmazonSimpleEmailServiceRequest
      Amazon.SimpleEmail.Model.UpdateReceiptRuleRequest

Namespace: Amazon.SimpleEmail.Model
Assembly: AWSSDK.SimpleEmail.dll
Version: 3.x.y.z

Syntax

C#
public class UpdateReceiptRuleRequest : AmazonSimpleEmailServiceRequest
         IAmazonWebServiceRequest

The UpdateReceiptRuleRequest type exposes the following members

Constructors

NameDescription
Public Method UpdateReceiptRuleRequest()

Properties

NameTypeDescription
Public Property Rule Amazon.SimpleEmail.Model.ReceiptRule

Gets and sets the property Rule.

A data structure that contains the updated receipt rule information.

Public Property RuleSetName System.String

Gets and sets the property RuleSetName.

The name of the receipt rule set that the receipt rule belongs to.

Examples

The following example updates a receipt rule to use an Amazon S3 action:

UpdateReceiptRule


var client = new AmazonSimpleEmailServiceClient();
var response = client.UpdateReceiptRule(new UpdateReceiptRuleRequest 
{
    Rule = new ReceiptRule {
        Actions = new List<ReceiptAction> {
            new ReceiptAction { S3Action = new S3Action {
                BucketName = "MyBucket",
                ObjectKeyPrefix = "email"
            } }
        },
        Enabled = true,
        Name = "MyRule",
        ScanEnabled = true,
        TlsPolicy = "Optional"
    },
    RuleSetName = "MyRuleSet"
});


            

Version Information

.NET:
Supported in: 8.0 and newer, Core 3.1

.NET Standard:
Supported in: 2.0

.NET Framework:
Supported in: 4.5 and newer, 3.5