Show / Hide Table of Contents

Interface ICfnReceiptFilterProps

Properties for defining a CfnReceiptFilter.

Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnReceiptFilterProps
Syntax (vb)
Public Interface ICfnReceiptFilterProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-receiptfilter.html

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;

             var cfnReceiptFilterProps = new CfnReceiptFilterProps {
                 Filter = new FilterProperty {
                     IpFilter = new IpFilterProperty {
                         Cidr = "cidr",
                         Policy = "policy"
                     },

                     // the properties below are optional
                     Name = "name"
                 }
             };

Synopsis

Properties

Filter

A data structure that describes the IP address filter to create, which consists of a name, an IP address range, and whether to allow or block mail from it.

Properties

Filter

A data structure that describes the IP address filter to create, which consists of a name, an IP address range, and whether to allow or block mail from it.

object Filter { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-receiptfilter.html#cfn-ses-receiptfilter-filter

Back to top Generated by DocFX