Class: Aws::MailManager::Types::RuleBooleanToEvaluate

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb

Overview

Note:

RuleBooleanToEvaluate is a union - when making an API calls you must set exactly one of the members.

Note:

RuleBooleanToEvaluate is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of RuleBooleanToEvaluate corresponding to the set member.

The union type representing the allowed types of operands for a boolean condition.

Direct Known Subclasses

Analysis, Attribute, IsInAddressList, Unknown

Defined Under Namespace

Classes: Analysis, Attribute, IsInAddressList, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#analysisTypes::Analysis

The Add On ARN and its returned value to evaluate in a boolean condition expression.

Returns:



3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 3811

class RuleBooleanToEvaluate < Struct.new(
  :attribute,
  :analysis,
  :is_in_address_list,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Attribute < RuleBooleanToEvaluate; end
  class Analysis < RuleBooleanToEvaluate; end
  class IsInAddressList < RuleBooleanToEvaluate; end
  class Unknown < RuleBooleanToEvaluate; end
end

#attributeString

The boolean type representing the allowed attribute types for an email.

Returns:

  • (String)


3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 3811

class RuleBooleanToEvaluate < Struct.new(
  :attribute,
  :analysis,
  :is_in_address_list,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Attribute < RuleBooleanToEvaluate; end
  class Analysis < RuleBooleanToEvaluate; end
  class IsInAddressList < RuleBooleanToEvaluate; end
  class Unknown < RuleBooleanToEvaluate; end
end

#is_in_address_listTypes::RuleIsInAddressList

The structure representing the address lists and address list attribute that will be used in evaluation of boolean expression.



3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 3811

class RuleBooleanToEvaluate < Struct.new(
  :attribute,
  :analysis,
  :is_in_address_list,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Attribute < RuleBooleanToEvaluate; end
  class Analysis < RuleBooleanToEvaluate; end
  class IsInAddressList < RuleBooleanToEvaluate; end
  class Unknown < RuleBooleanToEvaluate; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



3811
3812
3813
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 3811

def unknown
  @unknown
end