Class: Aws::SES::Types::ReceiptFilter

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-ses/types.rb

Overview

A receipt IP address filter enables you to specify whether to accept or reject mail originating from an IP address or range of IP addresses.

For information about setting up IP address filters, see the [Amazon SES Developer Guide].

[1]: docs.aws.amazon.com/ses/latest/dg/receiving-email-ip-filtering-console-walkthrough.html

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#ip_filterTypes::ReceiptIpFilter

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



3127
3128
3129
3130
3131
3132
# File 'lib/aws-sdk-ses/types.rb', line 3127

class ReceiptFilter < Struct.new(
  :name,
  :ip_filter)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

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

  • Contain only ASCII letters (a-z, A-Z), numbers (0-9), underscores (_), or dashes (-).

  • Start and end with a letter or number.

  • Contain 64 characters or fewer.

Returns:

  • (String)


3127
3128
3129
3130
3131
3132
# File 'lib/aws-sdk-ses/types.rb', line 3127

class ReceiptFilter < Struct.new(
  :name,
  :ip_filter)
  SENSITIVE = []
  include Aws::Structure
end