Interface QueueTransition.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<QueueTransition.Builder,QueueTransition>,SdkBuilder<QueueTransition.Builder,QueueTransition>,SdkPojo
- Enclosing class:
- QueueTransition
public static interface QueueTransition.Builder extends SdkPojo, CopyableBuilder<QueueTransition.Builder,QueueTransition>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description QueueTransition.BuilderdestinationQueue(String destinationQueue)The queue that the job was on after the transition.QueueTransition.BuildersourceQueue(String sourceQueue)The queue that the job was on before the transition.QueueTransition.Buildertimestamp(Instant timestamp)The time, in Unix epoch format, that the job moved from the source queue to the destination 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, sdkFields
-
-
-
-
Method Detail
-
destinationQueue
QueueTransition.Builder destinationQueue(String destinationQueue)
The queue that the job was on after the transition.- Parameters:
destinationQueue- The queue that the job was on after the transition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sourceQueue
QueueTransition.Builder sourceQueue(String sourceQueue)
The queue that the job was on before the transition.- Parameters:
sourceQueue- The queue that the job was on before the transition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
timestamp
QueueTransition.Builder timestamp(Instant timestamp)
The time, in Unix epoch format, that the job moved from the source queue to the destination queue.- Parameters:
timestamp- The time, in Unix epoch format, that the job moved from the source queue to the destination queue.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-