Interface Video.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Video.Builder,Video>,SdkBuilder<Video.Builder,Video>,SdkPojo
- Enclosing class:
- Video
public static interface Video.Builder extends SdkPojo, CopyableBuilder<Video.Builder,Video>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default Video.Builders3Object(Consumer<S3Object.Builder> s3Object)The Amazon S3 bucket name and file name for the video.Video.Builders3Object(S3Object s3Object)The Amazon S3 bucket name and file name for the video.-
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
-
s3Object
Video.Builder s3Object(S3Object s3Object)
The Amazon S3 bucket name and file name for the video.
- Parameters:
s3Object- The Amazon S3 bucket name and file name for the video.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3Object
default Video.Builder s3Object(Consumer<S3Object.Builder> s3Object)
The Amazon S3 bucket name and file name for the video.
This is a convenience method that creates an instance of theS3Object.Builderavoiding the need to create one manually viaS3Object.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tos3Object(S3Object).- Parameters:
s3Object- a consumer that will call methods onS3Object.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
s3Object(S3Object)
-
-