ContainerProperties constructor

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

Implementation

ContainerProperties({
  this.command,
  this.environment,
  this.executionRoleArn,
  this.fargatePlatformConfiguration,
  this.image,
  this.instanceType,
  this.jobRoleArn,
  this.linuxParameters,
  this.logConfiguration,
  this.memory,
  this.mountPoints,
  this.networkConfiguration,
  this.privileged,
  this.readonlyRootFilesystem,
  this.resourceRequirements,
  this.secrets,
  this.ulimits,
  this.user,
  this.vcpus,
  this.volumes,
});