Class: Aws::RTBFabric::Types::Action
- Inherits:
-
Struct
- Object
- Struct
- Aws::RTBFabric::Types::Action
- 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.
Defined Under Namespace
Classes: HeaderTag, NoBid, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#header_tag ⇒ Types::HeaderTagAction
Describes the header tag for a bid action.
-
#no_bid ⇒ Types::NoBidAction
Describes a no bid action.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#header_tag ⇒ Types::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_bid ⇒ Types::NoBidAction
Describes a no 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 |
#unknown ⇒ Object
Returns the value of attribute unknown
142 143 144 |
# File 'gems/aws-sdk-rtbfabric/lib/aws-sdk-rtbfabric/types.rb', line 142 def unknown @unknown end |