Transform Output Args
data class TransformOutputArgs(val audioAnalyzerPreset: Output<TransformOutputAudioAnalyzerPresetArgs>? = null, val builtinPreset: Output<TransformOutputBuiltinPresetArgs>? = null, val customPreset: Output<TransformOutputCustomPresetArgs>? = null, val faceDetectorPreset: Output<TransformOutputFaceDetectorPresetArgs>? = null, val onErrorAction: Output<String>? = null, val relativePriority: Output<String>? = null, val videoAnalyzerPreset: Output<TransformOutputVideoAnalyzerPresetArgs>? = null) : ConvertibleToJava<TransformOutputArgs>
Constructors
Link copied to clipboard
fun TransformOutputArgs(audioAnalyzerPreset: Output<TransformOutputAudioAnalyzerPresetArgs>? = null, builtinPreset: Output<TransformOutputBuiltinPresetArgs>? = null, customPreset: Output<TransformOutputCustomPresetArgs>? = null, faceDetectorPreset: Output<TransformOutputFaceDetectorPresetArgs>? = null, onErrorAction: Output<String>? = null, relativePriority: Output<String>? = null, videoAnalyzerPreset: Output<TransformOutputVideoAnalyzerPresetArgs>? = null)
Functions
Properties
Link copied to clipboard
A Transform can define more than one outputs. This property defines what the service should do when one output fails - either continue to produce other outputs, or, stop the other outputs. The overall Job state will not reflect failures of outputs that are specified with ContinueJob. Possible values are StopProcessingJob or ContinueJob. Defaults to StopProcessingJob.