Interface Action.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<Action.Builder,
,Action> SdkBuilder<Action.Builder,
,Action> SdkPojo
- Enclosing class:
Action
@Mutable
@NotThreadSafe
public static interface Action.Builder
extends SdkPojo, CopyableBuilder<Action.Builder,Action>
-
Method Summary
Modifier and TypeMethodDescriptiondefault Action.Builder
headerTag
(Consumer<HeaderTagAction.Builder> headerTag) Describes the header tag for a bid action.headerTag
(HeaderTagAction headerTag) Describes the header tag for a bid action.default Action.Builder
noBid
(Consumer<NoBidAction.Builder> noBid) Describes a no bid action.noBid
(NoBidAction noBid) Describes a no bid action.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Method Details
-
noBid
Describes a no bid action.
- Parameters:
noBid
- Describes a no bid action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
noBid
Describes a no bid action.
This is a convenience method that creates an instance of theNoBidAction.Builder
avoiding the need to create one manually viaNoBidAction.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tonoBid(NoBidAction)
.- Parameters:
noBid
- a consumer that will call methods onNoBidAction.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
headerTag
Describes the header tag for a bid action.
- Parameters:
headerTag
- Describes the header tag for a bid action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
headerTag
Describes the header tag for a bid action.
This is a convenience method that creates an instance of theHeaderTagAction.Builder
avoiding the need to create one manually viaHeaderTagAction.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toheaderTag(HeaderTagAction)
.- Parameters:
headerTag
- a consumer that will call methods onHeaderTagAction.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-