JobTemplate constructor

JobTemplate({
  1. required String name,
  2. required JobTemplateSettings settings,
  3. AccelerationSettings? accelerationSettings,
  4. String? arn,
  5. String? category,
  6. DateTime? createdAt,
  7. String? description,
  8. List<HopDestination>? hopDestinations,
  9. DateTime? lastUpdated,
  10. int? priority,
  11. String? queue,
  12. StatusUpdateInterval? statusUpdateInterval,
  13. Type? type,
})

Implementation

JobTemplate({
  required this.name,
  required this.settings,
  this.accelerationSettings,
  this.arn,
  this.category,
  this.createdAt,
  this.description,
  this.hopDestinations,
  this.lastUpdated,
  this.priority,
  this.queue,
  this.statusUpdateInterval,
  this.type,
});