Show / Hide Table of Contents

Class AllowListReceiptFilterProps

Construction properties for am AllowListReceiptFilter.

Inheritance
object
AllowListReceiptFilterProps
Implements
IAllowListReceiptFilterProps
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 AllowListReceiptFilterProps : IAllowListReceiptFilterProps
Syntax (vb)
Public Class AllowListReceiptFilterProps Implements IAllowListReceiptFilterProps
Remarks

ExampleMetadata: infused

Examples
new AllowListReceiptFilter(this, "AllowList", new AllowListReceiptFilterProps {
                Ips = new [] { "10.0.0.0/16", "1.2.3.4/16" }
            });

Synopsis

Constructors

AllowListReceiptFilterProps()

Construction properties for am AllowListReceiptFilter.

Properties

Ips

A list of ip addresses or ranges to allow list.

Constructors

AllowListReceiptFilterProps()

Construction properties for am AllowListReceiptFilter.

public AllowListReceiptFilterProps()
Remarks

ExampleMetadata: infused

Examples
new AllowListReceiptFilter(this, "AllowList", new AllowListReceiptFilterProps {
                Ips = new [] { "10.0.0.0/16", "1.2.3.4/16" }
            });

Properties

Ips

A list of ip addresses or ranges to allow list.

public string[] Ips { get; set; }
Property Value

string[]

Remarks

ExampleMetadata: infused

Implements

IAllowListReceiptFilterProps
Back to top Generated by DocFX