Interface ActivityTaskCancelRequestedEventAttributes.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<ActivityTaskCancelRequestedEventAttributes.Builder,ActivityTaskCancelRequestedEventAttributes>
,SdkBuilder<ActivityTaskCancelRequestedEventAttributes.Builder,ActivityTaskCancelRequestedEventAttributes>
,SdkPojo
- Enclosing class:
- ActivityTaskCancelRequestedEventAttributes
public static interface ActivityTaskCancelRequestedEventAttributes.Builder extends SdkPojo, CopyableBuilder<ActivityTaskCancelRequestedEventAttributes.Builder,ActivityTaskCancelRequestedEventAttributes>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ActivityTaskCancelRequestedEventAttributes.Builder
activityId(String activityId)
The unique ID of the task.ActivityTaskCancelRequestedEventAttributes.Builder
decisionTaskCompletedEventId(Long decisionTaskCompletedEventId)
The ID of theDecisionTaskCompleted
event corresponding to the decision task that resulted in theRequestCancelActivityTask
decision for this cancellation request.-
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
-
decisionTaskCompletedEventId
ActivityTaskCancelRequestedEventAttributes.Builder decisionTaskCompletedEventId(Long decisionTaskCompletedEventId)
The ID of the
DecisionTaskCompleted
event corresponding to the decision task that resulted in theRequestCancelActivityTask
decision for this cancellation request. 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 theDecisionTaskCompleted
event corresponding to the decision task that resulted in theRequestCancelActivityTask
decision for this cancellation request. 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.
-
activityId
ActivityTaskCancelRequestedEventAttributes.Builder activityId(String activityId)
The unique ID of the task.
- Parameters:
activityId
- The unique ID of the task.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-