Class: Aws::MailManager::Types::RuleStringToEvaluate

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

Overview

Note:

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

Note:

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

The string to evaluate in a string 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

The email attribute to evaluate in a string condition expression.

Returns:

  • (String)


2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 2977

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

  class Attribute < RuleStringToEvaluate; end
  class Unknown < RuleStringToEvaluate; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



2977
2978
2979
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 2977

def unknown
  @unknown
end