Interface Clip.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Clip.Builder,Clip>,SdkBuilder<Clip.Builder,Clip>,SdkPojo
- Enclosing class:
- Clip
public static interface Clip.Builder extends SdkPojo, CopyableBuilder<Clip.Builder,Clip>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default Clip.BuildertimeSpan(Consumer<TimeSpan.Builder> timeSpan)Settings that determine when a clip begins and how long it lasts.Clip.BuildertimeSpan(TimeSpan timeSpan)Settings that determine when a clip begins and how long it lasts.-
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
-
timeSpan
Clip.Builder timeSpan(TimeSpan timeSpan)
Settings that determine when a clip begins and how long it lasts.
- Parameters:
timeSpan- Settings that determine when a clip begins and how long it lasts.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
timeSpan
default Clip.Builder timeSpan(Consumer<TimeSpan.Builder> timeSpan)
Settings that determine when a clip begins and how long it lasts.
This is a convenience method that creates an instance of theTimeSpan.Builderavoiding the need to create one manually viaTimeSpan.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed totimeSpan(TimeSpan).- Parameters:
timeSpan- a consumer that will call methods onTimeSpan.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
timeSpan(TimeSpan)
-
-