Learn R Programming

paws.analytics (version 0.1.11)

glue_get_jobs: Retrieves all current job definitions

Description

Retrieves all current job definitions.

Usage

glue_get_jobs(NextToken, MaxResults)

Arguments

NextToken

A continuation token, if this is a continuation call.

MaxResults

The maximum size of the response.

Value

A list with the following syntax:

list(
  Jobs = list(
    list(
      Name = "string",
      Description = "string",
      LogUri = "string",
      Role = "string",
      CreatedOn = as.POSIXct(
        "2015-01-01"
      ),
      LastModifiedOn = as.POSIXct(
        "2015-01-01"
      ),
      ExecutionProperty = list(
        MaxConcurrentRuns = 123
      ),
      Command = list(
        Name = "string",
        ScriptLocation = "string",
        PythonVersion = "string"
      ),
      DefaultArguments = list(
        "string"
      ),
      NonOverridableArguments = 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"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$get_jobs(
  NextToken = "string",
  MaxResults = 123
)