Updates an existing job definition.
glue_update_job(JobName, JobUpdate)[required] Name of the job definition to update.
[required] Specifies the values with which to update the job definition.
svc$update_job(
JobName = "string",
JobUpdate = list(
Description = "string",
LogUri = "string",
Role = "string",
ExecutionProperty = list(
MaxConcurrentRuns = 123
),
Command = list(
Name = "string",
ScriptLocation = "string"
),
DefaultArguments = list(
"string"
),
Connections = list(
Connections = list(
"string"
)
),
MaxRetries = 123,
AllocatedCapacity = 123,
Timeout = 123,
MaxCapacity = 123.0,
NotificationProperty = list(
NotifyDelayAfter = 123
),
SecurityConfiguration = "string"
)
)