Get Session
| glue_get_session | R Documentation | 
Retrieves the session¶
Description¶
Retrieves the session.
Usage¶
glue_get_session(Id, RequestOrigin)
Arguments¶
Id | 
[required] The ID of the session.  | 
RequestOrigin | 
The origin of the request.  | 
Value¶
A list with the following syntax:
list(
  Session = list(
    Id = "string",
    CreatedOn = as.POSIXct(
      "2015-01-01"
    ),
    Status = "PROVISIONING"|"READY"|"FAILED"|"TIMEOUT"|"STOPPING"|"STOPPED",
    ErrorMessage = "string",
    Description = "string",
    Role = "string",
    Command = list(
      Name = "string",
      PythonVersion = "string"
    ),
    DefaultArguments = list(
      "string"
    ),
    Connections = list(
      Connections = list(
        "string"
      )
    ),
    Progress = 123.0,
    MaxCapacity = 123.0,
    SecurityConfiguration = "string",
    GlueVersion = "string",
    NumberOfWorkers = 123,
    WorkerType = "Standard"|"G.1X"|"G.2X"|"G.025X"|"G.4X"|"G.8X"|"Z.2X",
    CompletedOn = as.POSIXct(
      "2015-01-01"
    ),
    ExecutionTime = 123.0,
    DPUSeconds = 123.0,
    IdleTimeout = 123,
    ProfileName = "string"
  )
)
Request syntax¶
svc$get_session(
  Id = "string",
  RequestOrigin = "string"
)