Interface JobQueueDetail.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<JobQueueDetail.Builder,JobQueueDetail>,SdkBuilder<JobQueueDetail.Builder,JobQueueDetail>,SdkPojo
- Enclosing class:
- JobQueueDetail
public static interface JobQueueDetail.Builder extends SdkPojo, CopyableBuilder<JobQueueDetail.Builder,JobQueueDetail>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JobQueueDetail.BuildercomputeEnvironmentOrder(Collection<ComputeEnvironmentOrder> computeEnvironmentOrder)The compute environments that are attached to the job queue and the order that job placement is preferred.JobQueueDetail.BuildercomputeEnvironmentOrder(Consumer<ComputeEnvironmentOrder.Builder>... computeEnvironmentOrder)The compute environments that are attached to the job queue and the order that job placement is preferred.JobQueueDetail.BuildercomputeEnvironmentOrder(ComputeEnvironmentOrder... computeEnvironmentOrder)The compute environments that are attached to the job queue and the order that job placement is preferred.JobQueueDetail.BuilderjobQueueArn(String jobQueueArn)The Amazon Resource Name (ARN) of the job queue.JobQueueDetail.BuilderjobQueueName(String jobQueueName)The job queue name.JobQueueDetail.BuilderjobStateTimeLimitActions(Collection<JobStateTimeLimitAction> jobStateTimeLimitActions)The set of actions that Batch perform on jobs that remain at the head of the job queue in the specified state longer than specified times.JobQueueDetail.BuilderjobStateTimeLimitActions(Consumer<JobStateTimeLimitAction.Builder>... jobStateTimeLimitActions)The set of actions that Batch perform on jobs that remain at the head of the job queue in the specified state longer than specified times.JobQueueDetail.BuilderjobStateTimeLimitActions(JobStateTimeLimitAction... jobStateTimeLimitActions)The set of actions that Batch perform on jobs that remain at the head of the job queue in the specified state longer than specified times.JobQueueDetail.Builderpriority(Integer priority)The priority of the job queue.JobQueueDetail.BuilderschedulingPolicyArn(String schedulingPolicyArn)The Amazon Resource Name (ARN) of the scheduling policy.JobQueueDetail.Builderstate(String state)Describes the ability of the queue to accept new jobs.JobQueueDetail.Builderstate(JQState state)Describes the ability of the queue to accept new jobs.JobQueueDetail.Builderstatus(String status)The status of the job queue (for example,CREATINGorVALID).JobQueueDetail.Builderstatus(JQStatus status)The status of the job queue (for example,CREATINGorVALID).JobQueueDetail.BuilderstatusReason(String statusReason)A short, human-readable string to provide additional details for the current status of the job queue.JobQueueDetail.Buildertags(Map<String,String> tags)The tags that are applied to the job queue.-
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
-
jobQueueName
JobQueueDetail.Builder jobQueueName(String jobQueueName)
The job queue name.
- Parameters:
jobQueueName- The job queue name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
jobQueueArn
JobQueueDetail.Builder jobQueueArn(String jobQueueArn)
The Amazon Resource Name (ARN) of the job queue.
- Parameters:
jobQueueArn- The Amazon Resource Name (ARN) of the job queue.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
state
JobQueueDetail.Builder state(String state)
Describes the ability of the queue to accept new jobs. If the job queue state is
ENABLED, it can accept jobs. If the job queue state isDISABLED, new jobs can't be added to the queue, but jobs already in the queue can finish.- Parameters:
state- Describes the ability of the queue to accept new jobs. If the job queue state isENABLED, it can accept jobs. If the job queue state isDISABLED, new jobs can't be added to the queue, but jobs already in the queue can finish.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
JQState,JQState
-
state
JobQueueDetail.Builder state(JQState state)
Describes the ability of the queue to accept new jobs. If the job queue state is
ENABLED, it can accept jobs. If the job queue state isDISABLED, new jobs can't be added to the queue, but jobs already in the queue can finish.- Parameters:
state- Describes the ability of the queue to accept new jobs. If the job queue state isENABLED, it can accept jobs. If the job queue state isDISABLED, new jobs can't be added to the queue, but jobs already in the queue can finish.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
JQState,JQState
-
schedulingPolicyArn
JobQueueDetail.Builder schedulingPolicyArn(String schedulingPolicyArn)
The Amazon Resource Name (ARN) of the scheduling policy. The format is
aws:Partition:batch:Region:Account:scheduling-policy/Name. For example,aws:aws:batch:us-west-2:123456789012:scheduling-policy/MySchedulingPolicy.- Parameters:
schedulingPolicyArn- The Amazon Resource Name (ARN) of the scheduling policy. The format isaws:Partition:batch:Region:Account:scheduling-policy/Name. For example,aws:aws:batch:us-west-2:123456789012:scheduling-policy/MySchedulingPolicy.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
JobQueueDetail.Builder status(String status)
The status of the job queue (for example,
CREATINGorVALID).
-
status
JobQueueDetail.Builder status(JQStatus status)
The status of the job queue (for example,
CREATINGorVALID).
-
statusReason
JobQueueDetail.Builder statusReason(String statusReason)
A short, human-readable string to provide additional details for the current status of the job queue.
- Parameters:
statusReason- A short, human-readable string to provide additional details for the current status of the job queue.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
priority
JobQueueDetail.Builder priority(Integer priority)
The priority of the job queue. Job queue priority determines the order that job queues are evaluated when multiple queues dispatch jobs within a shared compute environment. A higher value for
priorityindicates a higher priority. Queues are evaluated in cycles, in descending order by priority. For example, a job queue with a priority value of10is evaluated before a queue with a priority value of1. All of the compute environments must be either Amazon EC2 (EC2orSPOT) or Fargate (FARGATEorFARGATE_SPOT). Amazon EC2 and Fargate compute environments can't be mixed.Job queue priority doesn't guarantee that a particular job executes before a job in a lower priority queue. Jobs added to higher priority queues during the queue evaluation cycle might not be evaluated until the next cycle. A job is dispatched from a queue only if resources are available when the queue is evaluated. If there are insufficient resources available at that time, the cycle proceeds to the next queue. This means that jobs added to higher priority queues might have to wait for jobs in multiple lower priority queues to complete before they are dispatched. You can use job dependencies to control the order for jobs from queues with different priorities. For more information, see Job Dependencies in the Batch User Guide.
- Parameters:
priority- The priority of the job queue. Job queue priority determines the order that job queues are evaluated when multiple queues dispatch jobs within a shared compute environment. A higher value forpriorityindicates a higher priority. Queues are evaluated in cycles, in descending order by priority. For example, a job queue with a priority value of10is evaluated before a queue with a priority value of1. All of the compute environments must be either Amazon EC2 (EC2orSPOT) or Fargate (FARGATEorFARGATE_SPOT). Amazon EC2 and Fargate compute environments can't be mixed.Job queue priority doesn't guarantee that a particular job executes before a job in a lower priority queue. Jobs added to higher priority queues during the queue evaluation cycle might not be evaluated until the next cycle. A job is dispatched from a queue only if resources are available when the queue is evaluated. If there are insufficient resources available at that time, the cycle proceeds to the next queue. This means that jobs added to higher priority queues might have to wait for jobs in multiple lower priority queues to complete before they are dispatched. You can use job dependencies to control the order for jobs from queues with different priorities. For more information, see Job Dependencies in the Batch User Guide.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
computeEnvironmentOrder
JobQueueDetail.Builder computeEnvironmentOrder(Collection<ComputeEnvironmentOrder> computeEnvironmentOrder)
The compute environments that are attached to the job queue and the order that job placement is preferred. Compute environments are selected for job placement in ascending order.
- Parameters:
computeEnvironmentOrder- The compute environments that are attached to the job queue and the order that job placement is preferred. Compute environments are selected for job placement in ascending order.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
computeEnvironmentOrder
JobQueueDetail.Builder computeEnvironmentOrder(ComputeEnvironmentOrder... computeEnvironmentOrder)
The compute environments that are attached to the job queue and the order that job placement is preferred. Compute environments are selected for job placement in ascending order.
- Parameters:
computeEnvironmentOrder- The compute environments that are attached to the job queue and the order that job placement is preferred. Compute environments are selected for job placement in ascending order.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
computeEnvironmentOrder
JobQueueDetail.Builder computeEnvironmentOrder(Consumer<ComputeEnvironmentOrder.Builder>... computeEnvironmentOrder)
The compute environments that are attached to the job queue and the order that job placement is preferred. Compute environments are selected for job placement in ascending order.
This is a convenience method that creates an instance of theComputeEnvironmentOrder.Builderavoiding the need to create one manually viaComputeEnvironmentOrder.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#computeEnvironmentOrder(List.) - Parameters:
computeEnvironmentOrder- a consumer that will call methods onComputeEnvironmentOrder.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#computeEnvironmentOrder(java.util.Collection)
-
tags
JobQueueDetail.Builder tags(Map<String,String> tags)
The tags that are applied to the job queue. For more information, see Tagging your Batch resources in Batch User Guide.
- Parameters:
tags- The tags that are applied to the job queue. For more information, see Tagging your Batch resources in Batch User Guide.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
jobStateTimeLimitActions
JobQueueDetail.Builder jobStateTimeLimitActions(Collection<JobStateTimeLimitAction> jobStateTimeLimitActions)
The set of actions that Batch perform on jobs that remain at the head of the job queue in the specified state longer than specified times. Batch will perform each action after
maxTimeSecondshas passed.- Parameters:
jobStateTimeLimitActions- The set of actions that Batch perform on jobs that remain at the head of the job queue in the specified state longer than specified times. Batch will perform each action aftermaxTimeSecondshas passed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
jobStateTimeLimitActions
JobQueueDetail.Builder jobStateTimeLimitActions(JobStateTimeLimitAction... jobStateTimeLimitActions)
The set of actions that Batch perform on jobs that remain at the head of the job queue in the specified state longer than specified times. Batch will perform each action after
maxTimeSecondshas passed.- Parameters:
jobStateTimeLimitActions- The set of actions that Batch perform on jobs that remain at the head of the job queue in the specified state longer than specified times. Batch will perform each action aftermaxTimeSecondshas passed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
jobStateTimeLimitActions
JobQueueDetail.Builder jobStateTimeLimitActions(Consumer<JobStateTimeLimitAction.Builder>... jobStateTimeLimitActions)
The set of actions that Batch perform on jobs that remain at the head of the job queue in the specified state longer than specified times. Batch will perform each action after
This is a convenience method that creates an instance of themaxTimeSecondshas passed.JobStateTimeLimitAction.Builderavoiding the need to create one manually viaJobStateTimeLimitAction.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#jobStateTimeLimitActions(List.) - Parameters:
jobStateTimeLimitActions- a consumer that will call methods onJobStateTimeLimitAction.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#jobStateTimeLimitActions(java.util.Collection)
-
-