Show / Hide Table of Contents

Class AllowListReceiptFilter

An allow list receipt filter.

Inheritance
object
AllowListReceiptFilter
Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class AllowListReceiptFilter : Construct
Syntax (vb)
Public Class AllowListReceiptFilter Inherits Construct
Remarks

ExampleMetadata: infused

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

Synopsis

Constructors

AllowListReceiptFilter(Construct, string, IAllowListReceiptFilterProps)

An allow list receipt filter.

Constructors

AllowListReceiptFilter(Construct, string, IAllowListReceiptFilterProps)

An allow list receipt filter.

public AllowListReceiptFilter(Construct scope, string id, IAllowListReceiptFilterProps props)
Parameters
scope Construct
id string
props IAllowListReceiptFilterProps
Remarks

ExampleMetadata: infused

Examples
new AllowListReceiptFilter(this, "AllowList", new AllowListReceiptFilterProps {
                Ips = new [] { "10.0.0.0/16", "1.2.3.4/16" }
            });
Back to top Generated by DocFX