Interface QuantumTaskQueueInfo.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<QuantumTaskQueueInfo.Builder,QuantumTaskQueueInfo>,SdkBuilder<QuantumTaskQueueInfo.Builder,QuantumTaskQueueInfo>,SdkPojo
- Enclosing class:
- QuantumTaskQueueInfo
public static interface QuantumTaskQueueInfo.Builder extends SdkPojo, CopyableBuilder<QuantumTaskQueueInfo.Builder,QuantumTaskQueueInfo>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description QuantumTaskQueueInfo.Buildermessage(String message)Optional.QuantumTaskQueueInfo.Builderposition(String position)Current position of the task in the quantum tasks queue.QuantumTaskQueueInfo.Builderqueue(String queue)The name of the queue.QuantumTaskQueueInfo.Builderqueue(QueueName queue)The name of the queue.QuantumTaskQueueInfo.BuilderqueuePriority(String queuePriority)Optional.QuantumTaskQueueInfo.BuilderqueuePriority(QueuePriority queuePriority)Optional.-
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
-
message
QuantumTaskQueueInfo.Builder message(String message)
Optional. Provides more information about the queue position. For example, if the task is complete and no longer in the queue, the message field contains that information.
- Parameters:
message- Optional. Provides more information about the queue position. For example, if the task is complete and no longer in the queue, the message field contains that information.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
position
QuantumTaskQueueInfo.Builder position(String position)
Current position of the task in the quantum tasks queue.
- Parameters:
position- Current position of the task in the quantum tasks queue.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
queue
QuantumTaskQueueInfo.Builder queue(String queue)
The name of the queue.
-
queue
QuantumTaskQueueInfo.Builder queue(QueueName queue)
The name of the queue.
-
queuePriority
QuantumTaskQueueInfo.Builder queuePriority(String queuePriority)
Optional. Specifies the priority of the queue. Quantum tasks in a priority queue are processed before the tasks in a normal queue.
- Parameters:
queuePriority- Optional. Specifies the priority of the queue. Quantum tasks in a priority queue are processed before the tasks in a normal queue.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
QueuePriority,QueuePriority
-
queuePriority
QuantumTaskQueueInfo.Builder queuePriority(QueuePriority queuePriority)
Optional. Specifies the priority of the queue. Quantum tasks in a priority queue are processed before the tasks in a normal queue.
- Parameters:
queuePriority- Optional. Specifies the priority of the queue. Quantum tasks in a priority queue are processed before the tasks in a normal queue.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
QueuePriority,QueuePriority
-
-