Class: Aws::MailManager::Types::RuleNumberToEvaluate

Inherits:
Struct
  • Object
show all
Includes:
Structure, Structure::Union
Defined in:
lib/aws-sdk-mailmanager/types.rb

Overview

Note:

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

Note:

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

The number to evaluate in a numeric condition expression.

Direct Known Subclasses

Attribute, Unknown

Defined Under Namespace

Classes: Attribute, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#attributeString

An email attribute that is used as the number to evaluate.

Returns:

  • (String)


3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
# File 'lib/aws-sdk-mailmanager/types.rb', line 3050

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

  class Attribute < RuleNumberToEvaluate; end
  class Unknown < RuleNumberToEvaluate; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



3050
3051
3052
# File 'lib/aws-sdk-mailmanager/types.rb', line 3050

def unknown
  @unknown
end