Class: Aws::RTBFabric::Types::Action

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

Overview

Note:

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

Note:

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

Describes a bid action.

Direct Known Subclasses

HeaderTag, NoBid, Unknown

Defined Under Namespace

Classes: HeaderTag, NoBid, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#header_tagTypes::HeaderTagAction

Describes the header tag for a bid action.



127
128
129
130
131
132
133
134
135
136
137
138
# File 'gems/aws-sdk-rtbfabric/lib/aws-sdk-rtbfabric/types.rb', line 127

class Action < Struct.new(
  :no_bid,
  :header_tag,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class NoBid < Action; end
  class HeaderTag < Action; end
  class Unknown < Action; end
end

#no_bidTypes::NoBidAction

Describes a no bid action.

Returns:



127
128
129
130
131
132
133
134
135
136
137
138
# File 'gems/aws-sdk-rtbfabric/lib/aws-sdk-rtbfabric/types.rb', line 127

class Action < Struct.new(
  :no_bid,
  :header_tag,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class NoBid < Action; end
  class HeaderTag < Action; end
  class Unknown < Action; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



127
128
129
# File 'gems/aws-sdk-rtbfabric/lib/aws-sdk-rtbfabric/types.rb', line 127

def unknown
  @unknown
end