Runbook constructor

Runbook({
  1. required String documentName,
  2. String? documentVersion,
  3. String? maxConcurrency,
  4. String? maxErrors,
  5. Map<String, List<String>>? parameters,
  6. List<TargetLocation>? targetLocations,
  7. String? targetParameterName,
  8. List<Target>? targets,
})

Implementation

Runbook({
  required this.documentName,
  this.documentVersion,
  this.maxConcurrency,
  this.maxErrors,
  this.parameters,
  this.targetLocations,
  this.targetParameterName,
  this.targets,
});