Interface VideoMonitoringSetting.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<VideoMonitoringSetting.Builder,VideoMonitoringSetting>,SdkBuilder<VideoMonitoringSetting.Builder,VideoMonitoringSetting>,SdkPojo
- Enclosing class:
- VideoMonitoringSetting
public static interface VideoMonitoringSetting.Builder extends SdkPojo, CopyableBuilder<VideoMonitoringSetting.Builder,VideoMonitoringSetting>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default VideoMonitoringSetting.BuilderblackFrames(Consumer<BlackFrames.Builder> blackFrames)Detects video frames that are black.VideoMonitoringSetting.BuilderblackFrames(BlackFrames blackFrames)Detects video frames that are black.default VideoMonitoringSetting.BuilderfrozenFrames(Consumer<FrozenFrames.Builder> frozenFrames)Detects video frames that have not changed.VideoMonitoringSetting.BuilderfrozenFrames(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 Detail
-
blackFrames
VideoMonitoringSetting.Builder blackFrames(BlackFrames 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
default VideoMonitoringSetting.Builder blackFrames(Consumer<BlackFrames.Builder> blackFrames)
Detects video frames that are black. This is a convenience method that creates an instance of theBlackFrames.Builderavoiding the need to create one manually viaBlackFrames.builder().When the
Consumercompletes,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:
blackFrames(BlackFrames)
-
frozenFrames
VideoMonitoringSetting.Builder frozenFrames(FrozenFrames 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
default VideoMonitoringSetting.Builder frozenFrames(Consumer<FrozenFrames.Builder> frozenFrames)
Detects video frames that have not changed. This is a convenience method that creates an instance of theFrozenFrames.Builderavoiding the need to create one manually viaFrozenFrames.builder().When the
Consumercompletes,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:
frozenFrames(FrozenFrames)
-
-