Queue constructor
Queue({
- required String name,
- String? arn,
- DateTime? createdAt,
- String? description,
- DateTime? lastUpdated,
- PricingPlan? pricingPlan,
- int? progressingJobsCount,
- ReservationPlan? reservationPlan,
- QueueStatus? status,
- int? submittedJobsCount,
- Type? type,
Implementation
Queue({
required this.name,
this.arn,
this.createdAt,
this.description,
this.lastUpdated,
this.pricingPlan,
this.progressingJobsCount,
this.reservationPlan,
this.status,
this.submittedJobsCount,
this.type,
});