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.
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_bid ⇒ Types::NoBidAction
Describes a no 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 |
#unknown ⇒ Object
Returns the value of attribute unknown
127 128 129 |
# File 'gems/aws-sdk-rtbfabric/lib/aws-sdk-rtbfabric/types.rb', line 127 def unknown @unknown end |