Interface QueueInfo.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<QueueInfo.Builder,QueueInfo>,SdkBuilder<QueueInfo.Builder,QueueInfo>,SdkPojo
- Enclosing class:
- QueueInfo
@Mutable @NotThreadSafe public static interface QueueInfo.Builder extends SdkPojo, CopyableBuilder<QueueInfo.Builder,QueueInfo>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description QueueInfo.BuilderqueuedIngestion(String queuedIngestion)The ID of the ongoing ingestion.QueueInfo.BuilderwaitingOnIngestion(String waitingOnIngestion)The ID of the queued ingestion.-
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
-
waitingOnIngestion
QueueInfo.Builder waitingOnIngestion(String waitingOnIngestion)
The ID of the queued ingestion.
- Parameters:
waitingOnIngestion- The ID of the queued ingestion.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
queuedIngestion
QueueInfo.Builder queuedIngestion(String queuedIngestion)
The ID of the ongoing ingestion. The queued ingestion is waiting for the ongoing ingestion to complete.
- Parameters:
queuedIngestion- The ID of the ongoing ingestion. The queued ingestion is waiting for the ongoing ingestion to complete.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-