TransformOutputArgs

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
constructor(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)

Properties

Link copied to clipboard

An audio_analyzer_preset block as defined above.

Link copied to clipboard

A builtin_preset block as defined above.

Link copied to clipboard

A custom_preset block as defined above.

Link copied to clipboard

A face_detector_preset block as defined above.

Link copied to clipboard
val onErrorAction: Output<String>? = null

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.

Link copied to clipboard
val relativePriority: Output<String>? = null

Sets the relative priority of the TransformOutputs within a Transform. This sets the priority that the service uses for processing Transform Outputs. Possible values are High, Normal or Low. Defaults to Normal.

Link copied to clipboard

A video_analyzer_preset block as defined below.

Functions

Link copied to clipboard
open override fun toJava(): TransformOutputArgs