Interface DTMFInputEvent.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DTMFInputEvent.Builder,DTMFInputEvent>,SdkBuilder<DTMFInputEvent.Builder,DTMFInputEvent>,SdkPojo
- All Known Subinterfaces:
DefaultDTMFInputEvent.Builder
- All Known Implementing Classes:
DTMFInputEvent.BuilderImpl
- Enclosing class:
- DTMFInputEvent
public static interface DTMFInputEvent.Builder extends SdkPojo, CopyableBuilder<DTMFInputEvent.Builder,DTMFInputEvent>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DTMFInputEvent.BuilderclientTimestampMillis(Long clientTimestampMillis)A timestamp set by the client of the date and time that the event was sent to Amazon Lex V2.DTMFInputEvent.BuildereventId(String eventId)A unique identifier that your application assigns to the event.DTMFInputEvent.BuilderinputCharacter(String inputCharacter)The DTMF character that the user pressed.-
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
-
inputCharacter
DTMFInputEvent.Builder inputCharacter(String inputCharacter)
The DTMF character that the user pressed. The allowed characters are A - D, 0 - 9, # and *.
- Parameters:
inputCharacter- The DTMF character that the user pressed. The allowed characters are A - D, 0 - 9, # and *.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
eventId
DTMFInputEvent.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
DTMFInputEvent.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.
-
-