Interface Event.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Event.Builder,Event>,SdkBuilder<Event.Builder,Event>,SdkPojo
- Enclosing class:
- Event
public static interface Event.Builder extends SdkPojo, CopyableBuilder<Event.Builder,Event>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Event.Builderdata(String data)The event data.Event.Buildertimestamp(Instant timestamp)The timestamp of the event.Event.Buildertype(String type)aws.evidently.evaluationspecifies an evaluation event, which determines which feature variation that a user sees.Event.Buildertype(EventType type)aws.evidently.evaluationspecifies an evaluation event, which determines which feature variation that a user sees.-
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 Detail
-
data
Event.Builder data(String data)
The event data.
- Parameters:
data- The event data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
timestamp
Event.Builder timestamp(Instant timestamp)
The timestamp of the event.
- Parameters:
timestamp- The timestamp of the event.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
Event.Builder type(String type)
aws.evidently.evaluationspecifies an evaluation event, which determines which feature variation that a user sees.aws.evidently.customspecifies a custom event, which generates metrics from user actions such as clicks and checkouts.- Parameters:
type-aws.evidently.evaluationspecifies an evaluation event, which determines which feature variation that a user sees.aws.evidently.customspecifies a custom event, which generates metrics from user actions such as clicks and checkouts.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
EventType,EventType
-
type
Event.Builder type(EventType type)
aws.evidently.evaluationspecifies an evaluation event, which determines which feature variation that a user sees.aws.evidently.customspecifies a custom event, which generates metrics from user actions such as clicks and checkouts.- Parameters:
type-aws.evidently.evaluationspecifies an evaluation event, which determines which feature variation that a user sees.aws.evidently.customspecifies a custom event, which generates metrics from user actions such as clicks and checkouts.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
EventType,EventType
-
-