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.



142
143
144
145
146
147
148
149
150
151
152
153
# File 'gems/aws-sdk-rtbfabric/lib/aws-sdk-rtbfabric/types.rb', line 142

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:



142
143
144
145
146
147
148
149
150
151
152
153
# File 'gems/aws-sdk-rtbfabric/lib/aws-sdk-rtbfabric/types.rb', line 142

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



142
143
144
# File 'gems/aws-sdk-rtbfabric/lib/aws-sdk-rtbfabric/types.rb', line 142

def unknown
  @unknown
end