Interface ActivityTaskScheduledEventAttributes.Builder

All Superinterfaces:
Buildable, CopyableBuilder<ActivityTaskScheduledEventAttributes.Builder,ActivityTaskScheduledEventAttributes>, SdkBuilder<ActivityTaskScheduledEventAttributes.Builder,ActivityTaskScheduledEventAttributes>, SdkPojo
Enclosing class:
ActivityTaskScheduledEventAttributes

public static interface ActivityTaskScheduledEventAttributes.Builder extends SdkPojo, CopyableBuilder<ActivityTaskScheduledEventAttributes.Builder,ActivityTaskScheduledEventAttributes>
  • Method Details

    • activityType

      The type of the activity task.

      Parameters:
      activityType - The type of the activity task.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • activityType

      The type of the activity task.

      This is a convenience method that creates an instance of the ActivityType.Builder avoiding the need to create one manually via ActivityType.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to activityType(ActivityType).

      Parameters:
      activityType - a consumer that will call methods on ActivityType.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • activityId

      The unique ID of the activity task.

      Parameters:
      activityId - The unique ID of the activity task.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • input

      The input provided to the activity task.

      Parameters:
      input - The input provided to the activity task.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • control

      Data attached to the event that can be used by the decider in subsequent workflow tasks. This data isn't sent to the activity.

      Parameters:
      control - Data attached to the event that can be used by the decider in subsequent workflow tasks. This data isn't sent to the activity.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • scheduleToStartTimeout

      ActivityTaskScheduledEventAttributes.Builder scheduleToStartTimeout(String scheduleToStartTimeout)

      The maximum amount of time the activity task can wait to be assigned to a worker.

      Parameters:
      scheduleToStartTimeout - The maximum amount of time the activity task can wait to be assigned to a worker.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • scheduleToCloseTimeout

      ActivityTaskScheduledEventAttributes.Builder scheduleToCloseTimeout(String scheduleToCloseTimeout)

      The maximum amount of time for this activity task.

      Parameters:
      scheduleToCloseTimeout - The maximum amount of time for this activity task.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • startToCloseTimeout

      ActivityTaskScheduledEventAttributes.Builder startToCloseTimeout(String startToCloseTimeout)

      The maximum amount of time a worker may take to process the activity task.

      Parameters:
      startToCloseTimeout - The maximum amount of time a worker may take to process the activity task.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • taskList

      The task list in which the activity task has been scheduled.

      Parameters:
      taskList - The task list in which the activity task has been scheduled.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • taskList

      The task list in which the activity task has been scheduled.

      This is a convenience method that creates an instance of the TaskList.Builder avoiding the need to create one manually via TaskList.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to taskList(TaskList).

      Parameters:
      taskList - a consumer that will call methods on TaskList.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • taskPriority

      The priority to assign to the scheduled activity task. If set, this overrides any default priority value that was assigned when the activity type was registered.

      Valid values are integers that range from Java's Integer.MIN_VALUE (-2147483648) to Integer.MAX_VALUE (2147483647). Higher numbers indicate higher priority.

      For more information about setting task priority, see Setting Task Priority in the Amazon SWF Developer Guide.

      Parameters:
      taskPriority - The priority to assign to the scheduled activity task. If set, this overrides any default priority value that was assigned when the activity type was registered.

      Valid values are integers that range from Java's Integer.MIN_VALUE (-2147483648) to Integer.MAX_VALUE (2147483647). Higher numbers indicate higher priority.

      For more information about setting task priority, see Setting Task Priority in the Amazon SWF Developer Guide.

      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • decisionTaskCompletedEventId

      ActivityTaskScheduledEventAttributes.Builder decisionTaskCompletedEventId(Long decisionTaskCompletedEventId)

      The ID of the DecisionTaskCompleted event corresponding to the decision that resulted in the scheduling of this activity task. 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 the DecisionTaskCompleted event corresponding to the decision that resulted in the scheduling of this activity task. 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.
    • heartbeatTimeout

      ActivityTaskScheduledEventAttributes.Builder heartbeatTimeout(String heartbeatTimeout)

      The maximum time before which the worker processing this task must report progress by calling RecordActivityTaskHeartbeat. If the timeout is exceeded, the activity task is automatically timed out. If the worker subsequently attempts to record a heartbeat or return a result, it is ignored.

      Parameters:
      heartbeatTimeout - The maximum time before which the worker processing this task must report progress by calling RecordActivityTaskHeartbeat. If the timeout is exceeded, the activity task is automatically timed out. If the worker subsequently attempts to record a heartbeat or return a result, it is ignored.
      Returns:
      Returns a reference to this object so that method calls can be chained together.