Job constructor

Job({
  1. String? arn,
  2. String? id,
  3. JobInput? input,
  4. List<JobInput>? inputs,
  5. JobOutput? output,
  6. String? outputKeyPrefix,
  7. List<JobOutput>? outputs,
  8. String? pipelineId,
  9. List<Playlist>? playlists,
  10. String? status,
  11. Timing? timing,
  12. Map<String, String>? userMetadata,
})

Implementation

Job({
  this.arn,
  this.id,
  this.input,
  this.inputs,
  this.output,
  this.outputKeyPrefix,
  this.outputs,
  this.pipelineId,
  this.playlists,
  this.status,
  this.timing,
  this.userMetadata,
});