Class: Aws::SES::Types::ReceiptIpFilter

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

Overview

Note:

When making an API call, you may pass ReceiptIpFilter data as a hash:

{
  policy: "Block", # required, accepts Block, Allow
  cidr: "Cidr", # required
}

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/DeveloperGuide/receiving-email-ip-filters.html

Instance Attribute Summary collapse

Instance Attribute Details

#cidrString

A single IP address or a range of IP addresses that you want to block or allow, specified in Classless Inter-Domain Routing (CIDR) notation. An example of a single email address is 10.0.0.1. An example of a range of IP addresses is 10.0.0.1/24. For more information about CIDR notation, see [RFC 2317].

[1]: tools.ietf.org/html/rfc2317

Returns:

  • (String)


3192
3193
3194
3195
3196
# File 'lib/aws-sdk-ses/types.rb', line 3192

class ReceiptIpFilter < Struct.new(
  :policy,
  :cidr)
  include Aws::Structure
end

#policyString

Indicates whether to block or allow incoming mail from the specified IP addresses.

Returns:

  • (String)


3192
3193
3194
3195
3196
# File 'lib/aws-sdk-ses/types.rb', line 3192

class ReceiptIpFilter < Struct.new(
  :policy,
  :cidr)
  include Aws::Structure
end