TransformOutputArgs

data class TransformOutputArgs(val onError: Output<Either<String, OnErrorType>>? = null, val preset: Output<Any>, val relativePriority: Output<Either<String, Priority>>? = null) : ConvertibleToJava<TransformOutputArgs>

Describes the properties of a TransformOutput, which are the rules to be applied while generating the desired output.

Constructors

Link copied to clipboard
constructor(onError: Output<Either<String, OnErrorType>>? = null, preset: Output<Any>, relativePriority: Output<Either<String, Priority>>? = null)

Properties

Link copied to clipboard
val onError: Output<Either<String, OnErrorType>>? = 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'. The default is 'StopProcessingJob'.

Link copied to clipboard
val preset: Output<Any>

Preset that describes the operations that will be used to modify, transcode, or extract insights from the source file to generate the output.

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

Sets the relative priority of the TransformOutputs within a Transform. This sets the priority that the service uses for processing TransformOutputs. The default priority is Normal.

Functions

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