JobSummary constructor

JobSummary({
  1. required String jobId,
  2. required String jobName,
  3. ArrayPropertiesSummary? arrayProperties,
  4. ContainerSummary? container,
  5. int? createdAt,
  6. String? jobArn,
  7. NodePropertiesSummary? nodeProperties,
  8. int? startedAt,
  9. JobStatus? status,
  10. String? statusReason,
  11. int? stoppedAt,
})

Implementation

JobSummary({
  required this.jobId,
  required this.jobName,
  this.arrayProperties,
  this.container,
  this.createdAt,
  this.jobArn,
  this.nodeProperties,
  this.startedAt,
  this.status,
  this.statusReason,
  this.stoppedAt,
});