Class: Aws::MailManager::Types::RuleIpExpression
- Inherits:
-
Struct
- Object
- Struct
- Aws::MailManager::Types::RuleIpExpression
- Defined in:
- gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb
Overview
An IP address expression matching certain IP addresses within a given range of IP addresses.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#evaluate ⇒ Types::RuleIpToEvaluate
The IP address to evaluate in this condition.
-
#operator ⇒ String
The operator to evaluate the IP address.
-
#values ⇒ Array<String>
The IP CIDR blocks in format "x.y.z.w/n" (eg 10.0.0.0/8) to match with the email's IP address.
Instance Attribute Details
#evaluate ⇒ Types::RuleIpToEvaluate
The IP address to evaluate in this condition.
2982 2983 2984 2985 2986 2987 2988 |
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 2982 class RuleIpExpression < Struct.new( :evaluate, :operator, :values) SENSITIVE = [] include Aws::Structure end |
#operator ⇒ String
The operator to evaluate the IP address.
2982 2983 2984 2985 2986 2987 2988 |
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 2982 class RuleIpExpression < Struct.new( :evaluate, :operator, :values) SENSITIVE = [] include Aws::Structure end |
#values ⇒ Array<String>
The IP CIDR blocks in format "x.y.z.w/n" (eg 10.0.0.0/8) to match with the email's IP address. For the operator CIDR_MATCHES, if multiple values are given, they are evaluated as an OR. That is, if the IP address is contained within any of the given CIDR ranges, the condition is deemed to match. For NOT_CIDR_MATCHES, if multiple CIDR ranges are given, the condition is deemed to match if the IP address is not contained in any of the given CIDR ranges.
2982 2983 2984 2985 2986 2987 2988 |
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 2982 class RuleIpExpression < Struct.new( :evaluate, :operator, :values) SENSITIVE = [] include Aws::Structure end |