Show / Hide Table of Contents

Class CfnReceiptFilter.FilterProperty

Specifies an IP address filter.

Inheritance
object
CfnReceiptFilter.FilterProperty
Implements
CfnReceiptFilter.IFilterProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnReceiptFilter.FilterProperty : CfnReceiptFilter.IFilterProperty
Syntax (vb)
Public Class CfnReceiptFilter.FilterProperty Implements CfnReceiptFilter.IFilterProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-receiptfilter-filter.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 filterProperty = new FilterProperty {
                 IpFilter = new IpFilterProperty {
                     Cidr = "cidr",
                     Policy = "policy"
                 },

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

Synopsis

Constructors

FilterProperty()

Specifies an IP address filter.

Properties

IpFilter

A structure that provides the IP addresses to block or allow, and whether to block or allow incoming mail from them.

Name

The name of the IP address filter. The name must meet the following requirements:.

Constructors

FilterProperty()

Specifies an IP address filter.

public FilterProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-receiptfilter-filter.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 filterProperty = new FilterProperty {
                 IpFilter = new IpFilterProperty {
                     Cidr = "cidr",
                     Policy = "policy"
                 },

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

Properties

IpFilter

A structure that provides the IP addresses to block or allow, and whether to block or allow incoming mail from them.

public object IpFilter { get; set; }
Property Value

object

Remarks

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

Name

The name of the IP address filter. The name must meet the following requirements:.

public string? Name { get; set; }
Property Value

string

Remarks

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

    Implements

    CfnReceiptFilter.IFilterProperty
    Back to top Generated by DocFX