Show / Hide Table of Contents

Interface IReceiptRuleProps

Construction properties for a ReceiptRule.

Inherited Members
IReceiptRuleOptions.Actions
IReceiptRuleOptions.After
IReceiptRuleOptions.Enabled
IReceiptRuleOptions.ReceiptRuleName
IReceiptRuleOptions.Recipients
IReceiptRuleOptions.ScanEnabled
IReceiptRuleOptions.TlsPolicy
Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IReceiptRuleProps : IReceiptRuleOptions
Syntax (vb)
Public Interface IReceiptRuleProps Inherits IReceiptRuleOptions
Remarks

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
            // The values are placeholders you should change.
            using Amazon.CDK.AWS.SES;

            ReceiptRule receiptRule;
            IReceiptRuleAction receiptRuleAction;
            ReceiptRuleSet receiptRuleSet;

            var receiptRuleProps = new ReceiptRuleProps {
                RuleSet = receiptRuleSet,

                // the properties below are optional
                Actions = new [] { receiptRuleAction },
                After = receiptRule,
                Enabled = false,
                ReceiptRuleName = "receiptRuleName",
                Recipients = new [] { "recipients" },
                ScanEnabled = false,
                TlsPolicy = TlsPolicy.OPTIONAL
            };

Synopsis

Properties

RuleSet

The name of the rule set that the receipt rule will be added to.

Properties

RuleSet

The name of the rule set that the receipt rule will be added to.

IReceiptRuleSet RuleSet { get; }
Property Value

IReceiptRuleSet

Remarks

ExampleMetadata: fixture=_generated

Back to top Generated by DocFX