Interface ActivityTaskScheduledEventAttributes.Builder

    • Method Detail

      • activityType

        ActivityTaskScheduledEventAttributes.Builder activityType​(ActivityType 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.
      • activityId

        ActivityTaskScheduledEventAttributes.Builder activityId​(String 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

        ActivityTaskScheduledEventAttributes.Builder input​(String 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

        ActivityTaskScheduledEventAttributes.Builder control​(String 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

        ActivityTaskScheduledEventAttributes.Builder taskList​(TaskList 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.
      • taskPriority

        ActivityTaskScheduledEventAttributes.Builder taskPriority​(String 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.