EcsParameters constructor

EcsParameters({
  1. required String taskDefinitionArn,
  2. String? group,
  3. LaunchType? launchType,
  4. NetworkConfiguration? networkConfiguration,
  5. String? platformVersion,
  6. int? taskCount,
})

Implementation

EcsParameters({
  required this.taskDefinitionArn,
  this.group,
  this.launchType,
  this.networkConfiguration,
  this.platformVersion,
  this.taskCount,
});