Interface TimerFiredEventAttributes.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TimerFiredEventAttributes.Builder,TimerFiredEventAttributes>,SdkBuilder<TimerFiredEventAttributes.Builder,TimerFiredEventAttributes>,SdkPojo
- Enclosing class:
- TimerFiredEventAttributes
@Mutable @NotThreadSafe 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.BuilderstartedEventId(Long startedEventId)The ID of theTimerStartedevent that was recorded when this timer was started.TimerFiredEventAttributes.BuildertimerId(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, sdkFieldNameToField, 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
TimerStartedevent 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 theTimerStartedevent 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.
-
-