Interface ActivityTaskTimedOutEventAttributes.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ActivityTaskTimedOutEventAttributes.Builder,ActivityTaskTimedOutEventAttributes>,SdkBuilder<ActivityTaskTimedOutEventAttributes.Builder,ActivityTaskTimedOutEventAttributes>,SdkPojo
- Enclosing class:
- ActivityTaskTimedOutEventAttributes
public static interface ActivityTaskTimedOutEventAttributes.Builder extends SdkPojo, CopyableBuilder<ActivityTaskTimedOutEventAttributes.Builder,ActivityTaskTimedOutEventAttributes>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ActivityTaskTimedOutEventAttributes.Builderdetails(String details)Contains the content of thedetailsparameter for the last call made by the activity toRecordActivityTaskHeartbeat.ActivityTaskTimedOutEventAttributes.BuilderscheduledEventId(Long scheduledEventId)The ID of theActivityTaskScheduledevent that was recorded when this activity task was scheduled.ActivityTaskTimedOutEventAttributes.BuilderstartedEventId(Long startedEventId)The ID of theActivityTaskStartedevent recorded when this activity task was started.ActivityTaskTimedOutEventAttributes.BuildertimeoutType(String timeoutType)The type of the timeout that caused this event.ActivityTaskTimedOutEventAttributes.BuildertimeoutType(ActivityTaskTimeoutType timeoutType)The type of the timeout that caused this event.-
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
ActivityTaskTimedOutEventAttributes.Builder timeoutType(String timeoutType)
The type of the timeout that caused this event.
- Parameters:
timeoutType- The type of the timeout that caused this event.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ActivityTaskTimeoutType,ActivityTaskTimeoutType
-
timeoutType
ActivityTaskTimedOutEventAttributes.Builder timeoutType(ActivityTaskTimeoutType timeoutType)
The type of the timeout that caused this event.
- Parameters:
timeoutType- The type of the timeout that caused this event.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ActivityTaskTimeoutType,ActivityTaskTimeoutType
-
scheduledEventId
ActivityTaskTimedOutEventAttributes.Builder scheduledEventId(Long scheduledEventId)
The ID of the
ActivityTaskScheduledevent that was recorded when this activity 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 theActivityTaskScheduledevent that was recorded when this activity 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
ActivityTaskTimedOutEventAttributes.Builder startedEventId(Long startedEventId)
The ID of the
ActivityTaskStartedevent recorded when this activity 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 theActivityTaskStartedevent recorded when this activity 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.
-
details
ActivityTaskTimedOutEventAttributes.Builder details(String details)
Contains the content of the
detailsparameter for the last call made by the activity toRecordActivityTaskHeartbeat.- Parameters:
details- Contains the content of thedetailsparameter for the last call made by the activity toRecordActivityTaskHeartbeat.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-