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 CreateReceiptRule operation. Creates a receipt rule.

For information about setting up 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.CreateReceiptRuleRequest

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

Syntax

C#
public class CreateReceiptRuleRequest : AmazonSimpleEmailServiceRequest
         IAmazonWebServiceRequest

The CreateReceiptRuleRequest type exposes the following members

Constructors

NameDescription
Public Method CreateReceiptRuleRequest()

Properties

NameTypeDescription
Public Property After System.String

Gets and sets the property After.

The name of an existing rule after which the new rule is placed. If this parameter is null, the new rule is inserted at the beginning of the rule list.

Public Property Rule Amazon.SimpleEmail.Model.ReceiptRule

Gets and sets the property Rule.

A data structure that contains the specified rule's name, actions, recipients, domains, enabled status, scan status, and TLS policy.

Public Property RuleSetName System.String

Gets and sets the property RuleSetName.

The name of the rule set where the receipt rule is added.

Examples

The following example creates a new receipt rule:

CreateReceiptRule


var client = new AmazonSimpleEmailServiceClient();
var response = client.CreateReceiptRule(new CreateReceiptRuleRequest 
{
    After = "",
    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 Core App:
Supported in: 3.1

.NET Standard:
Supported in: 2.0

.NET Framework:
Supported in: 4.5, 4.0, 3.5