Class: Aws::MailManager::Types::RuleStringExpression
- Inherits:
-
Struct
- Object
- Struct
- Aws::MailManager::Types::RuleStringExpression
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mailmanager/types.rb
Overview
A string expression is evaluated against strings or substrings of the email.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#evaluate ⇒ Types::RuleStringToEvaluate
The string to evaluate in a string condition expression.
-
#operator ⇒ String
The matching operator for a string condition expression.
-
#values ⇒ Array<String>
The string(s) to be evaluated in a string condition expression.
Instance Attribute Details
#evaluate ⇒ Types::RuleStringToEvaluate
The string to evaluate in a string condition expression.
3109 3110 3111 3112 3113 3114 3115 |
# File 'lib/aws-sdk-mailmanager/types.rb', line 3109 class RuleStringExpression < Struct.new( :evaluate, :operator, :values) SENSITIVE = [] include Aws::Structure end |
#operator ⇒ String
The matching operator for a string condition expression.
3109 3110 3111 3112 3113 3114 3115 |
# File 'lib/aws-sdk-mailmanager/types.rb', line 3109 class RuleStringExpression < Struct.new( :evaluate, :operator, :values) SENSITIVE = [] include Aws::Structure end |
#values ⇒ Array<String>
The string(s) to be evaluated in a string condition expression. For all operators, except for NOT_EQUALS, if multiple values are given, the values are processed as an OR. That is, if any of the values match the email’s string using the given operator, the condition is deemed to match. However, for NOT_EQUALS, the condition is only deemed to match if none of the given strings match the email’s string.
3109 3110 3111 3112 3113 3114 3115 |
# File 'lib/aws-sdk-mailmanager/types.rb', line 3109 class RuleStringExpression < Struct.new( :evaluate, :operator, :values) SENSITIVE = [] include Aws::Structure end |