Interface CreateQueueResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<CreateQueueResponse.Builder,CreateQueueResponse>,MediaConvertResponse.Builder,SdkBuilder<CreateQueueResponse.Builder,CreateQueueResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- CreateQueueResponse
public static interface CreateQueueResponse.Builder extends MediaConvertResponse.Builder, SdkPojo, CopyableBuilder<CreateQueueResponse.Builder,CreateQueueResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default CreateQueueResponse.Builderqueue(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.CreateQueueResponse.Builderqueue(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
CreateQueueResponse.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 CreateQueueResponse.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.Builderavoiding the need to create one manually viaQueue.builder().When the
Consumercompletes,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)
-
-