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.
4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 |
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 4178 class RuleVerdictToEvaluate < Struct.new( :attribute, :analysis, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Attribute < RuleVerdictToEvaluate; end class Analysis < RuleVerdictToEvaluate; end class Unknown < RuleVerdictToEvaluate; end end |
#attribute ⇒ String
The email verdict attribute to evaluate in a string verdict expression.
4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 |
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 4178 class RuleVerdictToEvaluate < Struct.new( :attribute, :analysis, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Attribute < RuleVerdictToEvaluate; end class Analysis < RuleVerdictToEvaluate; end class Unknown < RuleVerdictToEvaluate; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
4178 4179 4180 |
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 4178 def unknown @unknown end |