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.
Namespace: Amazon.SimpleEmail.Model
Assembly: AWSSDK.SimpleEmail.dll
Version: 3.x.y.z
public class UpdateReceiptRuleRequest : AmazonSimpleEmailServiceRequest IAmazonWebServiceRequest
The UpdateReceiptRuleRequest type exposes the following members
Name | Description | |
---|---|---|
![]() |
UpdateReceiptRuleRequest() |
Name | Type | Description | |
---|---|---|---|
![]() |
Rule | Amazon.SimpleEmail.Model.ReceiptRule |
Gets and sets the property Rule. A data structure that contains the updated receipt rule information. |
![]() |
RuleSetName | System.String |
Gets and sets the property RuleSetName. The name of the receipt rule set that the receipt rule belongs to. |
The following example updates a receipt rule to use an Amazon S3 action:
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" });
.NET Core App:
Supported in: 3.1
.NET Standard:
Supported in: 2.0, 1.3
.NET Framework:
Supported in: 4.5, 4.0, 3.5