Interface VideoMonitoringSetting.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<VideoMonitoringSetting.Builder,
,VideoMonitoringSetting> SdkBuilder<VideoMonitoringSetting.Builder,
,VideoMonitoringSetting> SdkPojo
- Enclosing class:
VideoMonitoringSetting
@Mutable
@NotThreadSafe
public static interface VideoMonitoringSetting.Builder
extends SdkPojo, CopyableBuilder<VideoMonitoringSetting.Builder,VideoMonitoringSetting>
-
Method Summary
Modifier and TypeMethodDescriptiondefault VideoMonitoringSetting.Builder
blackFrames
(Consumer<BlackFrames.Builder> blackFrames) Detects video frames that are black.blackFrames
(BlackFrames blackFrames) Detects video frames that are black.default VideoMonitoringSetting.Builder
frozenFrames
(Consumer<FrozenFrames.Builder> frozenFrames) Detects video frames that have not changed.frozenFrames
(FrozenFrames frozenFrames) Detects video frames that have not changed.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
-
blackFrames
Detects video frames that are black.
- Parameters:
blackFrames
- Detects video frames that are black.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
blackFrames
Detects video frames that are black.
This is a convenience method that creates an instance of theBlackFrames.Builder
avoiding the need to create one manually viaBlackFrames.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toblackFrames(BlackFrames)
.- Parameters:
blackFrames
- a consumer that will call methods onBlackFrames.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
frozenFrames
Detects video frames that have not changed.
- Parameters:
frozenFrames
- Detects video frames that have not changed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
frozenFrames
Detects video frames that have not changed.
This is a convenience method that creates an instance of theFrozenFrames.Builder
avoiding the need to create one manually viaFrozenFrames.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tofrozenFrames(FrozenFrames)
.- Parameters:
frozenFrames
- a consumer that will call methods onFrozenFrames.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-