Interface InputClippingSettings.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<InputClippingSettings.Builder,InputClippingSettings>,SdkBuilder<InputClippingSettings.Builder,InputClippingSettings>,SdkPojo
- Enclosing class:
- InputClippingSettings
public static interface InputClippingSettings.Builder extends SdkPojo, CopyableBuilder<InputClippingSettings.Builder,InputClippingSettings>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description InputClippingSettings.BuilderinputTimecodeSource(String inputTimecodeSource)The source of the timecodes in the source being clipped.InputClippingSettings.BuilderinputTimecodeSource(InputTimecodeSource inputTimecodeSource)The source of the timecodes in the source being clipped.default InputClippingSettings.BuilderstartTimecode(Consumer<StartTimecode.Builder> startTimecode)Settings to identify the start of the clip.InputClippingSettings.BuilderstartTimecode(StartTimecode startTimecode)Settings to identify the start of the clip.default InputClippingSettings.BuilderstopTimecode(Consumer<StopTimecode.Builder> stopTimecode)Settings to identify the end of the clip.InputClippingSettings.BuilderstopTimecode(StopTimecode stopTimecode)Settings to identify the end of the clip.-
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 Detail
-
inputTimecodeSource
InputClippingSettings.Builder inputTimecodeSource(String inputTimecodeSource)
The source of the timecodes in the source being clipped.- Parameters:
inputTimecodeSource- The source of the timecodes in the source being clipped.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
InputTimecodeSource,InputTimecodeSource
-
inputTimecodeSource
InputClippingSettings.Builder inputTimecodeSource(InputTimecodeSource inputTimecodeSource)
The source of the timecodes in the source being clipped.- Parameters:
inputTimecodeSource- The source of the timecodes in the source being clipped.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
InputTimecodeSource,InputTimecodeSource
-
startTimecode
InputClippingSettings.Builder startTimecode(StartTimecode startTimecode)
Settings to identify the start of the clip.- Parameters:
startTimecode- Settings to identify the start of the clip.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
startTimecode
default InputClippingSettings.Builder startTimecode(Consumer<StartTimecode.Builder> startTimecode)
Settings to identify the start of the clip. This is a convenience method that creates an instance of theStartTimecode.Builderavoiding the need to create one manually viaStartTimecode.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tostartTimecode(StartTimecode).- Parameters:
startTimecode- a consumer that will call methods onStartTimecode.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
startTimecode(StartTimecode)
-
stopTimecode
InputClippingSettings.Builder stopTimecode(StopTimecode stopTimecode)
Settings to identify the end of the clip.- Parameters:
stopTimecode- Settings to identify the end of the clip.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
stopTimecode
default InputClippingSettings.Builder stopTimecode(Consumer<StopTimecode.Builder> stopTimecode)
Settings to identify the end of the clip. This is a convenience method that creates an instance of theStopTimecode.Builderavoiding the need to create one manually viaStopTimecode.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tostopTimecode(StopTimecode).- Parameters:
stopTimecode- a consumer that will call methods onStopTimecode.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
stopTimecode(StopTimecode)
-
-