Class: Aws::MailManager::Types::RuleVerdictToEvaluate
- Inherits:
-
Struct
- Object
- Struct
- Aws::MailManager::Types::RuleVerdictToEvaluate
- Defined in:
- gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb
Overview
RuleVerdictToEvaluate is a union - when making an API calls you must set exactly one of the members.
RuleVerdictToEvaluate is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of RuleVerdictToEvaluate corresponding to the set member.
The verdict to evaluate in a verdict condition expression.
Defined Under Namespace
Classes: Analysis, Attribute, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#analysis ⇒ Types::Analysis
The Add On ARN and its returned value to evaluate in a verdict condition expression.
-
#attribute ⇒ String
The email verdict attribute to evaluate in a string verdict expression.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#analysis ⇒ Types::Analysis
The Add On ARN and its returned value to evaluate in a verdict condition expression.
3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 |
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 3149 class RuleVerdictToEvaluate < Struct.new( :analysis, :attribute, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Analysis < RuleVerdictToEvaluate; end class Attribute < RuleVerdictToEvaluate; end class Unknown < RuleVerdictToEvaluate; end end |
#attribute ⇒ String
The email verdict attribute to evaluate in a string verdict expression.
3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 |
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 3149 class RuleVerdictToEvaluate < Struct.new( :analysis, :attribute, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Analysis < RuleVerdictToEvaluate; end class Attribute < RuleVerdictToEvaluate; end class Unknown < RuleVerdictToEvaluate; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
3149 3150 3151 |
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 3149 def unknown @unknown end |