Show / Hide Table of Contents

Class CfnReceiptFilterProps

Properties for defining a CfnReceiptFilter.

Inheritance
System.Object
CfnReceiptFilterProps
Implements
ICfnReceiptFilterProps
Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.AWS.SES.dll
Syntax (csharp)
public class CfnReceiptFilterProps : Object, ICfnReceiptFilterProps
Syntax (vb)
Public Class CfnReceiptFilterProps
    Inherits Object
    Implements ICfnReceiptFilterProps
Remarks

Link: 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

Constructors

CfnReceiptFilterProps()

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.

Constructors

CfnReceiptFilterProps()

public CfnReceiptFilterProps()

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.

public object Filter { get; set; }
Property Value

System.Object

Remarks

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

Implements

ICfnReceiptFilterProps
Back to top Generated by DocFX