Deployment constructor

Deployment({
  1. List<CapacityProviderStrategyItem>? capacityProviderStrategy,
  2. DateTime? createdAt,
  3. int? desiredCount,
  4. int? failedTasks,
  5. String? id,
  6. LaunchType? launchType,
  7. NetworkConfiguration? networkConfiguration,
  8. int? pendingCount,
  9. String? platformVersion,
  10. DeploymentRolloutState? rolloutState,
  11. String? rolloutStateReason,
  12. int? runningCount,
  13. String? status,
  14. String? taskDefinition,
  15. DateTime? updatedAt,
})

Implementation

Deployment({
  this.capacityProviderStrategy,
  this.createdAt,
  this.desiredCount,
  this.failedTasks,
  this.id,
  this.launchType,
  this.networkConfiguration,
  this.pendingCount,
  this.platformVersion,
  this.rolloutState,
  this.rolloutStateReason,
  this.runningCount,
  this.status,
  this.taskDefinition,
  this.updatedAt,
});