Interface CfnReceiptFilter.IFilterProperty
Specifies an IP address filter.
Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnReceiptFilter.IFilterProperty
Syntax (vb)
Public Interface CfnReceiptFilter.IFilterProperty
Remarks
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
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:. |
Properties
IpFilter
A structure that provides the IP addresses to block or allow, and whether to block or allow incoming mail from them.
object IpFilter { get; }
Property Value
Remarks
Name
The name of the IP address filter. The name must meet the following requirements:.
string? Name { get; }