Job constructor

Job({
  1. int? allocatedCapacity,
  2. JobCommand? command,
  3. ConnectionsList? connections,
  4. DateTime? createdOn,
  5. Map<String, String>? defaultArguments,
  6. String? description,
  7. ExecutionProperty? executionProperty,
  8. String? glueVersion,
  9. DateTime? lastModifiedOn,
  10. String? logUri,
  11. double? maxCapacity,
  12. int? maxRetries,
  13. String? name,
  14. Map<String, String>? nonOverridableArguments,
  15. NotificationProperty? notificationProperty,
  16. int? numberOfWorkers,
  17. String? role,
  18. String? securityConfiguration,
  19. int? timeout,
  20. WorkerType? workerType,
})

Implementation

Job({
  this.allocatedCapacity,
  this.command,
  this.connections,
  this.createdOn,
  this.defaultArguments,
  this.description,
  this.executionProperty,
  this.glueVersion,
  this.lastModifiedOn,
  this.logUri,
  this.maxCapacity,
  this.maxRetries,
  this.name,
  this.nonOverridableArguments,
  this.notificationProperty,
  this.numberOfWorkers,
  this.role,
  this.securityConfiguration,
  this.timeout,
  this.workerType,
});