Interface GetQueueResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<GetQueueResponse.Builder,GetQueueResponse>
,MediaConvertResponse.Builder
,SdkBuilder<GetQueueResponse.Builder,GetQueueResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- GetQueueResponse
public static interface GetQueueResponse.Builder extends MediaConvertResponse.Builder, SdkPojo, CopyableBuilder<GetQueueResponse.Builder,GetQueueResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default GetQueueResponse.Builder
queue(Consumer<Queue.Builder> queue)
You can use queues to manage the resources that are available to your AWS account for running multiple transcoding jobs at the same time.GetQueueResponse.Builder
queue(Queue queue)
You can use queues to manage the resources that are available to your AWS account for running multiple transcoding jobs at the same time.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.mediaconvert.model.MediaConvertResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
queue
GetQueueResponse.Builder queue(Queue queue)
You can use queues to manage the resources that are available to your AWS account for running multiple transcoding jobs at the same time. If you don't specify a queue, the service sends all jobs through the default queue. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/working-with-queues.html.- Parameters:
queue
- You can use queues to manage the resources that are available to your AWS account for running multiple transcoding jobs at the same time. If you don't specify a queue, the service sends all jobs through the default queue. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/working-with-queues.html.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
queue
default GetQueueResponse.Builder queue(Consumer<Queue.Builder> queue)
You can use queues to manage the resources that are available to your AWS account for running multiple transcoding jobs at the same time. If you don't specify a queue, the service sends all jobs through the default queue. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/working-with-queues.html. This is a convenience method that creates an instance of theQueue.Builder
avoiding the need to create one manually viaQueue.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toqueue(Queue)
.- Parameters:
queue
- a consumer that will call methods onQueue.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
queue(Queue)
-
-