ContainerDetail constructor

ContainerDetail({
  1. List<String>? command,
  2. String? containerInstanceArn,
  3. List<KeyValuePair>? environment,
  4. String? executionRoleArn,
  5. int? exitCode,
  6. FargatePlatformConfiguration? fargatePlatformConfiguration,
  7. String? image,
  8. String? instanceType,
  9. String? jobRoleArn,
  10. LinuxParameters? linuxParameters,
  11. LogConfiguration? logConfiguration,
  12. String? logStreamName,
  13. int? memory,
  14. List<MountPoint>? mountPoints,
  15. NetworkConfiguration? networkConfiguration,
  16. List<NetworkInterface>? networkInterfaces,
  17. bool? privileged,
  18. bool? readonlyRootFilesystem,
  19. String? reason,
  20. List<ResourceRequirement>? resourceRequirements,
  21. List<Secret>? secrets,
  22. String? taskArn,
  23. List<Ulimit>? ulimits,
  24. String? user,
  25. int? vcpus,
  26. List<Volume>? volumes,
})

Implementation

ContainerDetail({
  this.command,
  this.containerInstanceArn,
  this.environment,
  this.executionRoleArn,
  this.exitCode,
  this.fargatePlatformConfiguration,
  this.image,
  this.instanceType,
  this.jobRoleArn,
  this.linuxParameters,
  this.logConfiguration,
  this.logStreamName,
  this.memory,
  this.mountPoints,
  this.networkConfiguration,
  this.networkInterfaces,
  this.privileged,
  this.readonlyRootFilesystem,
  this.reason,
  this.resourceRequirements,
  this.secrets,
  this.taskArn,
  this.ulimits,
  this.user,
  this.vcpus,
  this.volumes,
});