Learn R Programming

paws.analytics (version 0.1.6)

glue_update_job: Updates an existing job definition

Description

Updates an existing job definition.

Usage

glue_update_job(JobName, JobUpdate)

Arguments

JobName

[required] The name of the job definition to update.

JobUpdate

[required] Specifies the values with which to update the job definition.

Request syntax

svc$update_job(
  JobName = "string",
  JobUpdate = list(
    Description = "string",
    LogUri = "string",
    Role = "string",
    ExecutionProperty = list(
      MaxConcurrentRuns = 123
    ),
    Command = list(
      Name = "string",
      ScriptLocation = "string",
      PythonVersion = "string"
    ),
    DefaultArguments = list(
      "string"
    ),
    Connections = list(
      Connections = list(
        "string"
      )
    ),
    MaxRetries = 123,
    AllocatedCapacity = 123,
    Timeout = 123,
    MaxCapacity = 123.0,
    WorkerType = "Standard"|"G.1X"|"G.2X",
    NumberOfWorkers = 123,
    SecurityConfiguration = "string",
    NotificationProperty = list(
      NotifyDelayAfter = 123
    ),
    GlueVersion = "string"
  )
)