Interface VideoOverlayTransition.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<VideoOverlayTransition.Builder,
,VideoOverlayTransition> SdkBuilder<VideoOverlayTransition.Builder,
,VideoOverlayTransition> SdkPojo
- Enclosing class:
VideoOverlayTransition
public static interface VideoOverlayTransition.Builder
extends SdkPojo, CopyableBuilder<VideoOverlayTransition.Builder,VideoOverlayTransition>
-
Method Summary
Modifier and TypeMethodDescriptiondefault VideoOverlayTransition.Builder
endPosition
(Consumer<VideoOverlayPosition.Builder> endPosition) Specify the ending position for this transition, relative to the base input video's frame.endPosition
(VideoOverlayPosition endPosition) Specify the ending position for this transition, relative to the base input video's frame.endTimecode
(String endTimecode) Specify the timecode for when this transition ends.startTimecode
(String startTimecode) Specify the timecode for when this transition begins.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, sdkFields
-
Method Details
-
endPosition
Specify the ending position for this transition, relative to the base input video's frame. Your video overlay will move smoothly to this position, beginning at this transition's Start timecode and ending at this transition's End timecode.- Parameters:
endPosition
- Specify the ending position for this transition, relative to the base input video's frame. Your video overlay will move smoothly to this position, beginning at this transition's Start timecode and ending at this transition's End timecode.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
endPosition
default VideoOverlayTransition.Builder endPosition(Consumer<VideoOverlayPosition.Builder> endPosition) Specify the ending position for this transition, relative to the base input video's frame. Your video overlay will move smoothly to this position, beginning at this transition's Start timecode and ending at this transition's End timecode. This is a convenience method that creates an instance of theVideoOverlayPosition.Builder
avoiding the need to create one manually viaVideoOverlayPosition.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toendPosition(VideoOverlayPosition)
.- Parameters:
endPosition
- a consumer that will call methods onVideoOverlayPosition.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
endTimecode
Specify the timecode for when this transition ends. Use the format HH:MM:SS:FF or HH:MM:SS;FF, where HH is the hour, MM is the minute, SS is the second, and FF is the frame number. When entering this value, take into account your choice for Timecode source.- Parameters:
endTimecode
- Specify the timecode for when this transition ends. Use the format HH:MM:SS:FF or HH:MM:SS;FF, where HH is the hour, MM is the minute, SS is the second, and FF is the frame number. When entering this value, take into account your choice for Timecode source.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
startTimecode
Specify the timecode for when this transition begins. Use the format HH:MM:SS:FF or HH:MM:SS;FF, where HH is the hour, MM is the minute, SS is the second, and FF is the frame number. When entering this value, take into account your choice for Timecode source.- Parameters:
startTimecode
- Specify the timecode for when this transition begins. Use the format HH:MM:SS:FF or HH:MM:SS;FF, where HH is the hour, MM is the minute, SS is the second, and FF is the frame number. When entering this value, take into account your choice for Timecode source.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-