JobConfig constructor
JobConfig({
- String? name,
- String? schedule,
- String? resource,
- String? method,
- Struct? command,
- LogConfiguration? logConfiguration,
Implementation
factory JobConfig({
$core.String? name,
$core.String? schedule,
$core.String? resource,
$core.String? method,
$51.Struct? command,
LogConfiguration? logConfiguration,
}) {
final $result = create();
if (name != null) {
$result.name = name;
}
if (schedule != null) {
$result.schedule = schedule;
}
if (resource != null) {
$result.resource = resource;
}
if (method != null) {
$result.method = method;
}
if (command != null) {
$result.command = command;
}
if (logConfiguration != null) {
$result.logConfiguration = logConfiguration;
}
return $result;
}