Interface ReadPipelineResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ReadPipelineResponse.Builder,ReadPipelineResponse>,ElasticTranscoderResponse.Builder,SdkBuilder<ReadPipelineResponse.Builder,ReadPipelineResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ReadPipelineResponse
public static interface ReadPipelineResponse.Builder extends ElasticTranscoderResponse.Builder, SdkPojo, CopyableBuilder<ReadPipelineResponse.Builder,ReadPipelineResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ReadPipelineResponse.Builderpipeline(Consumer<Pipeline.Builder> pipeline)A section of the response body that provides information about the pipeline.ReadPipelineResponse.Builderpipeline(Pipeline pipeline)A section of the response body that provides information about the pipeline.ReadPipelineResponse.Builderwarnings(Collection<Warning> warnings)Elastic Transcoder returns a warning if the resources used by your pipeline are not in the same region as the pipeline.ReadPipelineResponse.Builderwarnings(Consumer<Warning.Builder>... warnings)Elastic Transcoder returns a warning if the resources used by your pipeline are not in the same region as the pipeline.ReadPipelineResponse.Builderwarnings(Warning... warnings)Elastic Transcoder returns a warning if the resources used by your pipeline are not in the same region as the pipeline.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.elastictranscoder.model.ElasticTranscoderResponse.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
-
pipeline
ReadPipelineResponse.Builder pipeline(Pipeline pipeline)
A section of the response body that provides information about the pipeline.
- Parameters:
pipeline- A section of the response body that provides information about the pipeline.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
pipeline
default ReadPipelineResponse.Builder pipeline(Consumer<Pipeline.Builder> pipeline)
A section of the response body that provides information about the pipeline.
This is a convenience method that creates an instance of thePipeline.Builderavoiding the need to create one manually viaPipeline.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed topipeline(Pipeline).- Parameters:
pipeline- a consumer that will call methods onPipeline.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
pipeline(Pipeline)
-
warnings
ReadPipelineResponse.Builder warnings(Collection<Warning> warnings)
Elastic Transcoder returns a warning if the resources used by your pipeline are not in the same region as the pipeline.
Using resources in the same region, such as your Amazon S3 buckets, Amazon SNS notification topics, and AWS KMS key, reduces processing time and prevents cross-regional charges.
- Parameters:
warnings- Elastic Transcoder returns a warning if the resources used by your pipeline are not in the same region as the pipeline.Using resources in the same region, such as your Amazon S3 buckets, Amazon SNS notification topics, and AWS KMS key, reduces processing time and prevents cross-regional charges.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
warnings
ReadPipelineResponse.Builder warnings(Warning... warnings)
Elastic Transcoder returns a warning if the resources used by your pipeline are not in the same region as the pipeline.
Using resources in the same region, such as your Amazon S3 buckets, Amazon SNS notification topics, and AWS KMS key, reduces processing time and prevents cross-regional charges.
- Parameters:
warnings- Elastic Transcoder returns a warning if the resources used by your pipeline are not in the same region as the pipeline.Using resources in the same region, such as your Amazon S3 buckets, Amazon SNS notification topics, and AWS KMS key, reduces processing time and prevents cross-regional charges.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
warnings
ReadPipelineResponse.Builder warnings(Consumer<Warning.Builder>... warnings)
Elastic Transcoder returns a warning if the resources used by your pipeline are not in the same region as the pipeline.
Using resources in the same region, such as your Amazon S3 buckets, Amazon SNS notification topics, and AWS KMS key, reduces processing time and prevents cross-regional charges.
This is a convenience method that creates an instance of theWarning.Builderavoiding the need to create one manually viaWarning.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#warnings(List.) - Parameters:
warnings- a consumer that will call methods onWarning.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#warnings(java.util.Collection)
-
-