Interface Container.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<Container.Builder,
,Container> SdkBuilder<Container.Builder,
,Container> SdkPojo
- Enclosing class:
Container
@Mutable
@NotThreadSafe
public static interface Container.Builder
extends SdkPojo, CopyableBuilder<Container.Builder,Container>
-
Method Summary
Modifier and TypeMethodDescriptionThe total duration of your media file, in seconds.The format of your media file.The format of your media file.tracks
(Collection<Track> tracks) Details about each track (video, audio, or data) in the media file.tracks
(Consumer<Track.Builder>... tracks) Details about each track (video, audio, or data) in the media file.Details about each track (video, audio, or data) in the media file.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 Details
-
duration
The total duration of your media file, in seconds.- Parameters:
duration
- The total duration of your media file, in seconds.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
format
The format of your media file. For example: MP4, QuickTime (MOV), Matroska (MKV), WebM or MXF. Note that this will be blank if your media file has a format that the MediaConvert Probe operation does not recognize.- Parameters:
format
- The format of your media file. For example: MP4, QuickTime (MOV), Matroska (MKV), WebM or MXF. Note that this will be blank if your media file has a format that the MediaConvert Probe operation does not recognize.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
format
The format of your media file. For example: MP4, QuickTime (MOV), Matroska (MKV), WebM or MXF. Note that this will be blank if your media file has a format that the MediaConvert Probe operation does not recognize.- Parameters:
format
- The format of your media file. For example: MP4, QuickTime (MOV), Matroska (MKV), WebM or MXF. Note that this will be blank if your media file has a format that the MediaConvert Probe operation does not recognize.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
tracks
Details about each track (video, audio, or data) in the media file.- Parameters:
tracks
- Details about each track (video, audio, or data) in the media file.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tracks
Details about each track (video, audio, or data) in the media file.- Parameters:
tracks
- Details about each track (video, audio, or data) in the media file.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tracks
Details about each track (video, audio, or data) in the media file. This is a convenience method that creates an instance of theTrack.Builder
avoiding the need to create one manually viaTrack.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed totracks(List<Track>)
.- Parameters:
tracks
- a consumer that will call methods onTrack.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-