JobDescriptor constructor

JobDescriptor({
  1. bool? confirmationRequired,
  2. DateTime? creationTime,
  3. String? description,
  4. List<JobFailure>? failureReasons,
  5. String? jobArn,
  6. String? jobId,
  7. JobManifest? manifest,
  8. JobOperation? operation,
  9. int? priority,
  10. JobProgressSummary? progressSummary,
  11. JobReport? report,
  12. String? roleArn,
  13. JobStatus? status,
  14. String? statusUpdateReason,
  15. String? suspendedCause,
  16. DateTime? suspendedDate,
  17. DateTime? terminationDate,
})

Implementation

JobDescriptor({
  this.confirmationRequired,
  this.creationTime,
  this.description,
  this.failureReasons,
  this.jobArn,
  this.jobId,
  this.manifest,
  this.operation,
  this.priority,
  this.progressSummary,
  this.report,
  this.roleArn,
  this.status,
  this.statusUpdateReason,
  this.suspendedCause,
  this.suspendedDate,
  this.terminationDate,
});