Interface PutActionInteractionsRequest.Builder
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<PutActionInteractionsRequest.Builder,
,PutActionInteractionsRequest> PersonalizeEventsRequest.Builder
,SdkBuilder<PutActionInteractionsRequest.Builder,
,PutActionInteractionsRequest> SdkPojo
,SdkRequest.Builder
- Enclosing class:
PutActionInteractionsRequest
@Mutable
@NotThreadSafe
public static interface PutActionInteractionsRequest.Builder
extends PersonalizeEventsRequest.Builder, SdkPojo, CopyableBuilder<PutActionInteractionsRequest.Builder,PutActionInteractionsRequest>
-
Method Summary
Modifier and TypeMethodDescriptionactionInteractions
(Collection<ActionInteraction> actionInteractions) A list of action interaction events from the session.actionInteractions
(Consumer<ActionInteraction.Builder>... actionInteractions) A list of action interaction events from the session.actionInteractions
(ActionInteraction... actionInteractions) A list of action interaction events from the session.overrideConfiguration
(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Add an optional request override configuration.overrideConfiguration
(AwsRequestOverrideConfiguration overrideConfiguration) Add an optional request override configuration.trackingId
(String trackingId) The ID of your action interaction event tracker.Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
Methods inherited from interface software.amazon.awssdk.services.personalizeevents.model.PersonalizeEventsRequest.Builder
build
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
-
trackingId
The ID of your action interaction event tracker. When you create an Action interactions dataset, Amazon Personalize creates an action interaction event tracker for you. For more information, see Action interaction event tracker ID.
- Parameters:
trackingId
- The ID of your action interaction event tracker. When you create an Action interactions dataset, Amazon Personalize creates an action interaction event tracker for you. For more information, see Action interaction event tracker ID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
actionInteractions
PutActionInteractionsRequest.Builder actionInteractions(Collection<ActionInteraction> actionInteractions) A list of action interaction events from the session.
- Parameters:
actionInteractions
- A list of action interaction events from the session.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
actionInteractions
A list of action interaction events from the session.
- Parameters:
actionInteractions
- A list of action interaction events from the session.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
actionInteractions
PutActionInteractionsRequest.Builder actionInteractions(Consumer<ActionInteraction.Builder>... actionInteractions) A list of action interaction events from the session.
This is a convenience method that creates an instance of theActionInteraction.Builder
avoiding the need to create one manually viaActionInteraction.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toactionInteractions(List<ActionInteraction>)
.- Parameters:
actionInteractions
- a consumer that will call methods onActionInteraction.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
overrideConfiguration
PutActionInteractionsRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) Description copied from interface:AwsRequest.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
- Parameters:
overrideConfiguration
- The override configuration.- Returns:
- This object for method chaining.
-
overrideConfiguration
PutActionInteractionsRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Description copied from interface:AwsRequest.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
- Parameters:
builderConsumer
- AConsumer
to which an emptyAwsRequestOverrideConfiguration.Builder
will be given.- Returns:
- This object for method chaining.
-