Interface PutActionInteractionsRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<PutActionInteractionsRequest.Builder,PutActionInteractionsRequest>,PersonalizeEventsRequest.Builder,SdkBuilder<PutActionInteractionsRequest.Builder,PutActionInteractionsRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- PutActionInteractionsRequest
public static interface PutActionInteractionsRequest.Builder extends PersonalizeEventsRequest.Builder, SdkPojo, CopyableBuilder<PutActionInteractionsRequest.Builder,PutActionInteractionsRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PutActionInteractionsRequest.BuilderactionInteractions(Collection<ActionInteraction> actionInteractions)A list of action interaction events from the session.PutActionInteractionsRequest.BuilderactionInteractions(Consumer<ActionInteraction.Builder>... actionInteractions)A list of action interaction events from the session.PutActionInteractionsRequest.BuilderactionInteractions(ActionInteraction... actionInteractions)A list of action interaction events from the session.PutActionInteractionsRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)PutActionInteractionsRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)PutActionInteractionsRequest.BuildertrackingId(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, sdkFields
-
-
-
-
Method Detail
-
trackingId
PutActionInteractionsRequest.Builder trackingId(String 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
PutActionInteractionsRequest.Builder actionInteractions(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
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.Builderavoiding the need to create one manually viaActionInteraction.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#actionInteractions(List.) - 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:
#actionInteractions(java.util.Collection)
-
overrideConfiguration
PutActionInteractionsRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
PutActionInteractionsRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-