Container constructor

Container({
  1. String? containerArn,
  2. String? cpu,
  3. int? exitCode,
  4. List<String>? gpuIds,
  5. HealthStatus? healthStatus,
  6. String? image,
  7. String? imageDigest,
  8. String? lastStatus,
  9. String? memory,
  10. String? memoryReservation,
  11. String? name,
  12. List<NetworkBinding>? networkBindings,
  13. List<NetworkInterface>? networkInterfaces,
  14. String? reason,
  15. String? runtimeId,
  16. String? taskArn,
})

Implementation

Container({
  this.containerArn,
  this.cpu,
  this.exitCode,
  this.gpuIds,
  this.healthStatus,
  this.image,
  this.imageDigest,
  this.lastStatus,
  this.memory,
  this.memoryReservation,
  this.name,
  this.networkBindings,
  this.networkInterfaces,
  this.reason,
  this.runtimeId,
  this.taskArn,
});