Interface ActivityTypeConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ActivityTypeConfiguration.Builder,ActivityTypeConfiguration>,SdkBuilder<ActivityTypeConfiguration.Builder,ActivityTypeConfiguration>,SdkPojo
- Enclosing class:
- ActivityTypeConfiguration
public static interface ActivityTypeConfiguration.Builder extends SdkPojo, CopyableBuilder<ActivityTypeConfiguration.Builder,ActivityTypeConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description ActivityTypeConfiguration.BuilderdefaultTaskHeartbeatTimeout(String defaultTaskHeartbeatTimeout)The default maximum time, in seconds, before which a worker processing a task must report progress by calling RecordActivityTaskHeartbeat.default ActivityTypeConfiguration.BuilderdefaultTaskList(Consumer<TaskList.Builder> defaultTaskList)The default task list specified for this activity type at registration.ActivityTypeConfiguration.BuilderdefaultTaskList(TaskList defaultTaskList)The default task list specified for this activity type at registration.ActivityTypeConfiguration.BuilderdefaultTaskPriority(String defaultTaskPriority)The default task priority for tasks of this activity type, specified at registration.ActivityTypeConfiguration.BuilderdefaultTaskScheduleToCloseTimeout(String defaultTaskScheduleToCloseTimeout)The default maximum duration, specified when registering the activity type, for tasks of this activity type.ActivityTypeConfiguration.BuilderdefaultTaskScheduleToStartTimeout(String defaultTaskScheduleToStartTimeout)The default maximum duration, specified when registering the activity type, that a task of an activity type can wait before being assigned to a worker.ActivityTypeConfiguration.BuilderdefaultTaskStartToCloseTimeout(String defaultTaskStartToCloseTimeout)The default maximum duration for tasks of an activity type specified when registering the activity type.-
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
-
defaultTaskStartToCloseTimeout
ActivityTypeConfiguration.Builder defaultTaskStartToCloseTimeout(String defaultTaskStartToCloseTimeout)
The default maximum duration for tasks of an activity type specified when registering the activity type. You can override this default when scheduling a task through the
ScheduleActivityTaskDecision.The duration is specified in seconds, an integer greater than or equal to
0. You can useNONEto specify unlimited duration.- Parameters:
defaultTaskStartToCloseTimeout- The default maximum duration for tasks of an activity type specified when registering the activity type. You can override this default when scheduling a task through theScheduleActivityTaskDecision.The duration is specified in seconds, an integer greater than or equal to
0. You can useNONEto specify unlimited duration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
defaultTaskHeartbeatTimeout
ActivityTypeConfiguration.Builder defaultTaskHeartbeatTimeout(String defaultTaskHeartbeatTimeout)
The default maximum time, in seconds, before which a worker processing a task must report progress by calling RecordActivityTaskHeartbeat.
You can specify this value only when registering an activity type. The registered default value can be overridden when you schedule a task through the
ScheduleActivityTaskDecision. If the activity worker subsequently attempts to record a heartbeat or returns a result, the activity worker receives anUnknownResourcefault. In this case, Amazon SWF no longer considers the activity task to be valid; the activity worker should clean up the activity task.The duration is specified in seconds, an integer greater than or equal to
0. You can useNONEto specify unlimited duration.- Parameters:
defaultTaskHeartbeatTimeout- The default maximum time, in seconds, before which a worker processing a task must report progress by calling RecordActivityTaskHeartbeat.You can specify this value only when registering an activity type. The registered default value can be overridden when you schedule a task through the
ScheduleActivityTaskDecision. If the activity worker subsequently attempts to record a heartbeat or returns a result, the activity worker receives anUnknownResourcefault. In this case, Amazon SWF no longer considers the activity task to be valid; the activity worker should clean up the activity task.The duration is specified in seconds, an integer greater than or equal to
0. You can useNONEto specify unlimited duration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
defaultTaskList
ActivityTypeConfiguration.Builder defaultTaskList(TaskList defaultTaskList)
The default task list specified for this activity type at registration. This default is used if a task list isn't provided when a task is scheduled through the
ScheduleActivityTaskDecision. You can override the default registered task list when scheduling a task through theScheduleActivityTaskDecision.- Parameters:
defaultTaskList- The default task list specified for this activity type at registration. This default is used if a task list isn't provided when a task is scheduled through theScheduleActivityTaskDecision. You can override the default registered task list when scheduling a task through theScheduleActivityTaskDecision.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
defaultTaskList
default ActivityTypeConfiguration.Builder defaultTaskList(Consumer<TaskList.Builder> defaultTaskList)
The default task list specified for this activity type at registration. This default is used if a task list isn't provided when a task is scheduled through the
This is a convenience method that creates an instance of theScheduleActivityTaskDecision. You can override the default registered task list when scheduling a task through theScheduleActivityTaskDecision.TaskList.Builderavoiding the need to create one manually viaTaskList.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed todefaultTaskList(TaskList).- Parameters:
defaultTaskList- a consumer that will call methods onTaskList.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
defaultTaskList(TaskList)
-
defaultTaskPriority
ActivityTypeConfiguration.Builder defaultTaskPriority(String defaultTaskPriority)
The default task priority for tasks of this activity type, specified at registration. If not set, then
0is used as the default priority. This default can be overridden when scheduling an activity task.Valid values are integers that range from Java's
Integer.MIN_VALUE(-2147483648) toInteger.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:
defaultTaskPriority- The default task priority for tasks of this activity type, specified at registration. If not set, then0is used as the default priority. This default can be overridden when scheduling an activity task.Valid values are integers that range from Java's
Integer.MIN_VALUE(-2147483648) toInteger.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.
-
defaultTaskScheduleToStartTimeout
ActivityTypeConfiguration.Builder defaultTaskScheduleToStartTimeout(String defaultTaskScheduleToStartTimeout)
The default maximum duration, specified when registering the activity type, that a task of an activity type can wait before being assigned to a worker. You can override this default when scheduling a task through the
ScheduleActivityTaskDecision.The duration is specified in seconds, an integer greater than or equal to
0. You can useNONEto specify unlimited duration.- Parameters:
defaultTaskScheduleToStartTimeout- The default maximum duration, specified when registering the activity type, that a task of an activity type can wait before being assigned to a worker. You can override this default when scheduling a task through theScheduleActivityTaskDecision.The duration is specified in seconds, an integer greater than or equal to
0. You can useNONEto specify unlimited duration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
defaultTaskScheduleToCloseTimeout
ActivityTypeConfiguration.Builder defaultTaskScheduleToCloseTimeout(String defaultTaskScheduleToCloseTimeout)
The default maximum duration, specified when registering the activity type, for tasks of this activity type. You can override this default when scheduling a task through the
ScheduleActivityTaskDecision.The duration is specified in seconds, an integer greater than or equal to
0. You can useNONEto specify unlimited duration.- Parameters:
defaultTaskScheduleToCloseTimeout- The default maximum duration, specified when registering the activity type, for tasks of this activity type. You can override this default when scheduling a task through theScheduleActivityTaskDecision.The duration is specified in seconds, an integer greater than or equal to
0. You can useNONEto specify unlimited duration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-