Interface TextInputEvent.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TextInputEvent.Builder,TextInputEvent>,SdkBuilder<TextInputEvent.Builder,TextInputEvent>,SdkPojo
- All Known Subinterfaces:
DefaultTextInputEvent.Builder
- All Known Implementing Classes:
TextInputEvent.BuilderImpl
- Enclosing class:
- TextInputEvent
public static interface TextInputEvent.Builder extends SdkPojo, CopyableBuilder<TextInputEvent.Builder,TextInputEvent>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TextInputEvent.BuilderclientTimestampMillis(Long clientTimestampMillis)A timestamp set by the client of the date and time that the event was sent to Amazon Lex V2.TextInputEvent.BuildereventId(String eventId)A unique identifier that your application assigns to the event.TextInputEvent.Buildertext(String text)The text from the user.-
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, sdkFields
-
-
-
-
Method Detail
-
text
TextInputEvent.Builder text(String text)
The text from the user. Amazon Lex V2 processes this as a complete statement.
- Parameters:
text- The text from the user. Amazon Lex V2 processes this as a complete statement.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
eventId
TextInputEvent.Builder eventId(String eventId)
A unique identifier that your application assigns to the event. You can use this to identify events in logs.
- Parameters:
eventId- A unique identifier that your application assigns to the event. You can use this to identify events in logs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
clientTimestampMillis
TextInputEvent.Builder clientTimestampMillis(Long clientTimestampMillis)
A timestamp set by the client of the date and time that the event was sent to Amazon Lex V2.
- Parameters:
clientTimestampMillis- A timestamp set by the client of the date and time that the event was sent to Amazon Lex V2.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-