Class: Aws::MailManager::Types::IngressIpToEvaluate

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

Overview

Note:

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

Note:

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

The structure for an IP based condition matching on the incoming mail.

Direct Known Subclasses

Attribute, Unknown

Defined Under Namespace

Classes: Attribute, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#attributeString

An enum type representing the allowed attribute types for an IP condition.

Returns:

  • (String)


2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 2216

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

  class Attribute < IngressIpToEvaluate; end
  class Unknown < IngressIpToEvaluate; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



2216
2217
2218
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 2216

def unknown
  @unknown
end