Interface TimerCanceledEventAttributes.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TimerCanceledEventAttributes.Builder,TimerCanceledEventAttributes>,SdkBuilder<TimerCanceledEventAttributes.Builder,TimerCanceledEventAttributes>,SdkPojo
- Enclosing class:
- TimerCanceledEventAttributes
public static interface TimerCanceledEventAttributes.Builder extends SdkPojo, CopyableBuilder<TimerCanceledEventAttributes.Builder,TimerCanceledEventAttributes>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TimerCanceledEventAttributes.BuilderdecisionTaskCompletedEventId(Long decisionTaskCompletedEventId)The ID of theDecisionTaskCompletedevent corresponding to the decision task that resulted in theCancelTimerdecision to cancel this timer.TimerCanceledEventAttributes.BuilderstartedEventId(Long startedEventId)The ID of theTimerStartedevent that was recorded when this timer was started.TimerCanceledEventAttributes.BuildertimerId(String timerId)The unique ID of the timer that was canceled.-
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
TimerCanceledEventAttributes.Builder timerId(String timerId)
The unique ID of the timer that was canceled.
- Parameters:
timerId- The unique ID of the timer that was canceled.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
startedEventId
TimerCanceledEventAttributes.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.
-
decisionTaskCompletedEventId
TimerCanceledEventAttributes.Builder decisionTaskCompletedEventId(Long decisionTaskCompletedEventId)
The ID of the
DecisionTaskCompletedevent corresponding to the decision task that resulted in theCancelTimerdecision to cancel this timer. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.- Parameters:
decisionTaskCompletedEventId- The ID of theDecisionTaskCompletedevent corresponding to the decision task that resulted in theCancelTimerdecision to cancel this timer. 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.
-
-