EdgePackagingJobSummary constructor

EdgePackagingJobSummary({
  1. required String edgePackagingJobArn,
  2. required String edgePackagingJobName,
  3. required EdgePackagingJobStatus edgePackagingJobStatus,
  4. String? compilationJobName,
  5. DateTime? creationTime,
  6. DateTime? lastModifiedTime,
  7. String? modelName,
  8. String? modelVersion,
})

Implementation

EdgePackagingJobSummary({
  required this.edgePackagingJobArn,
  required this.edgePackagingJobName,
  required this.edgePackagingJobStatus,
  this.compilationJobName,
  this.creationTime,
  this.lastModifiedTime,
  this.modelName,
  this.modelVersion,
});