Interface CreatePipelineResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<CreatePipelineResponse.Builder,CreatePipelineResponse>,ElasticTranscoderResponse.Builder,SdkBuilder<CreatePipelineResponse.Builder,CreatePipelineResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- CreatePipelineResponse
public static interface CreatePipelineResponse.Builder extends ElasticTranscoderResponse.Builder, SdkPojo, CopyableBuilder<CreatePipelineResponse.Builder,CreatePipelineResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default CreatePipelineResponse.Builderpipeline(Consumer<Pipeline.Builder> pipeline)A section of the response body that provides information about the pipeline that is created.CreatePipelineResponse.Builderpipeline(Pipeline pipeline)A section of the response body that provides information about the pipeline that is created.CreatePipelineResponse.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.CreatePipelineResponse.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.CreatePipelineResponse.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
CreatePipelineResponse.Builder pipeline(Pipeline pipeline)
A section of the response body that provides information about the pipeline that is created.
- Parameters:
pipeline- A section of the response body that provides information about the pipeline that is created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
pipeline
default CreatePipelineResponse.Builder pipeline(Consumer<Pipeline.Builder> pipeline)
A section of the response body that provides information about the pipeline that is created.
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
CreatePipelineResponse.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
CreatePipelineResponse.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
CreatePipelineResponse.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)
-
-