Interface TimerFiredEventAttributes.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<TimerFiredEventAttributes.Builder,TimerFiredEventAttributes>
,SdkBuilder<TimerFiredEventAttributes.Builder,TimerFiredEventAttributes>
,SdkPojo
- Enclosing class:
- TimerFiredEventAttributes
public static interface TimerFiredEventAttributes.Builder extends SdkPojo, CopyableBuilder<TimerFiredEventAttributes.Builder,TimerFiredEventAttributes>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TimerFiredEventAttributes.Builder
startedEventId(Long startedEventId)
The ID of theTimerStarted
event that was recorded when this timer was started.TimerFiredEventAttributes.Builder
timerId(String timerId)
The unique ID of the timer that fired.-
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
-
timerId
TimerFiredEventAttributes.Builder timerId(String timerId)
The unique ID of the timer that fired.
- Parameters:
timerId
- The unique ID of the timer that fired.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
startedEventId
TimerFiredEventAttributes.Builder startedEventId(Long startedEventId)
The ID of the
TimerStarted
event that was recorded when this timer was started. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.- Parameters:
startedEventId
- The ID of theTimerStarted
event that was recorded when this timer was started. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-