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

Attribute, Unknown

Defined Under Namespace

Classes: Attribute, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#attributeString

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

Returns:

  • (String)


2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 2821

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

  class Attribute < RuleBooleanToEvaluate; end
  class Unknown < RuleBooleanToEvaluate; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



2821
2822
2823
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 2821

def unknown
  @unknown
end