Class DisconnectionEvent.BuilderImpl
- java.lang.Object
-
- software.amazon.awssdk.services.lexruntimev2.model.DisconnectionEvent.BuilderImpl
-
- All Implemented Interfaces:
SdkPojo,DisconnectionEvent.Builder,Buildable,CopyableBuilder<DisconnectionEvent.Builder,DisconnectionEvent>,SdkBuilder<DisconnectionEvent.Builder,DisconnectionEvent>
- Enclosing class:
- DisconnectionEvent
protected static class DisconnectionEvent.BuilderImpl extends Object implements DisconnectionEvent.Builder
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedBuilderImpl()protectedBuilderImpl(DisconnectionEvent model)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DisconnectionEventbuild()DisconnectionEvent.BuilderclientTimestampMillis(Long clientTimestampMillis)A timestamp set by the client of the date and time that the event was sent to Amazon Lex V2.DisconnectionEvent.BuildereventId(String eventId)A unique identifier that your application assigns to the event.LonggetClientTimestampMillis()StringgetEventId()List<SdkField<?>>sdkFields()voidsetClientTimestampMillis(Long clientTimestampMillis)voidsetEventId(String eventId)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields
-
-
-
-
Constructor Detail
-
BuilderImpl
protected BuilderImpl()
-
BuilderImpl
protected BuilderImpl(DisconnectionEvent model)
-
-
Method Detail
-
getEventId
public final String getEventId()
-
setEventId
public final void setEventId(String eventId)
-
eventId
public final DisconnectionEvent.Builder eventId(String eventId)
Description copied from interface:DisconnectionEvent.BuilderA unique identifier that your application assigns to the event. You can use this to identify events in logs.
- Specified by:
eventIdin interfaceDisconnectionEvent.Builder- 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.
-
getClientTimestampMillis
public final Long getClientTimestampMillis()
-
setClientTimestampMillis
public final void setClientTimestampMillis(Long clientTimestampMillis)
-
clientTimestampMillis
public final DisconnectionEvent.Builder clientTimestampMillis(Long clientTimestampMillis)
Description copied from interface:DisconnectionEvent.BuilderA timestamp set by the client of the date and time that the event was sent to Amazon Lex V2.
- Specified by:
clientTimestampMillisin interfaceDisconnectionEvent.Builder- 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.
-
build
public DisconnectionEvent build()
- Specified by:
buildin interfaceBuildable- Specified by:
buildin interfaceSdkBuilder<DisconnectionEvent.Builder,DisconnectionEvent>
-
-