Interface DecisionTaskTimedOutEventAttributes.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DecisionTaskTimedOutEventAttributes.Builder,DecisionTaskTimedOutEventAttributes>,SdkBuilder<DecisionTaskTimedOutEventAttributes.Builder,DecisionTaskTimedOutEventAttributes>,SdkPojo
- Enclosing class:
- DecisionTaskTimedOutEventAttributes
@Mutable @NotThreadSafe public static interface DecisionTaskTimedOutEventAttributes.Builder extends SdkPojo, CopyableBuilder<DecisionTaskTimedOutEventAttributes.Builder,DecisionTaskTimedOutEventAttributes>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DecisionTaskTimedOutEventAttributes.BuilderscheduledEventId(Long scheduledEventId)The ID of theDecisionTaskScheduledevent that was recorded when this decision task was scheduled.DecisionTaskTimedOutEventAttributes.BuilderstartedEventId(Long startedEventId)The ID of theDecisionTaskStartedevent recorded when this decision task was started.DecisionTaskTimedOutEventAttributes.BuildertimeoutType(String timeoutType)The type of timeout that expired before the decision task could be completed.DecisionTaskTimedOutEventAttributes.BuildertimeoutType(DecisionTaskTimeoutType timeoutType)The type of timeout that expired before the decision task could be completed.-
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
-
timeoutType
DecisionTaskTimedOutEventAttributes.Builder timeoutType(String timeoutType)
The type of timeout that expired before the decision task could be completed.
- Parameters:
timeoutType- The type of timeout that expired before the decision task could be completed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DecisionTaskTimeoutType,DecisionTaskTimeoutType
-
timeoutType
DecisionTaskTimedOutEventAttributes.Builder timeoutType(DecisionTaskTimeoutType timeoutType)
The type of timeout that expired before the decision task could be completed.
- Parameters:
timeoutType- The type of timeout that expired before the decision task could be completed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DecisionTaskTimeoutType,DecisionTaskTimeoutType
-
scheduledEventId
DecisionTaskTimedOutEventAttributes.Builder scheduledEventId(Long scheduledEventId)
The ID of the
DecisionTaskScheduledevent that was recorded when this decision task was scheduled. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.- Parameters:
scheduledEventId- The ID of theDecisionTaskScheduledevent that was recorded when this decision task was scheduled. 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.
-
startedEventId
DecisionTaskTimedOutEventAttributes.Builder startedEventId(Long startedEventId)
The ID of the
DecisionTaskStartedevent recorded when this decision task 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 theDecisionTaskStartedevent recorded when this decision task 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.
-
-