Describe Service Job
| batch_describe_service_job | R Documentation |
The details of a service job¶
Description¶
The details of a service job.
Usage¶
batch_describe_service_job(jobId)
Arguments¶
jobId |
[required] The job ID for the service job to describe. |
Value¶
A list with the following syntax:
list(
attempts = list(
list(
serviceResourceId = list(
name = "TrainingJobArn",
value = "string"
),
startedAt = 123,
stoppedAt = 123,
statusReason = "string"
)
),
capacityUsage = list(
list(
capacityUnit = "string",
quantity = 123.0
)
),
createdAt = 123,
isTerminated = TRUE|FALSE,
jobArn = "string",
jobId = "string",
jobName = "string",
jobQueue = "string",
latestAttempt = list(
serviceResourceId = list(
name = "TrainingJobArn",
value = "string"
)
),
retryStrategy = list(
attempts = 123,
evaluateOnExit = list(
list(
action = "RETRY"|"EXIT",
onStatusReason = "string"
)
)
),
scheduledAt = 123,
schedulingPriority = 123,
serviceRequestPayload = "string",
serviceJobType = "SAGEMAKER_TRAINING",
shareIdentifier = "string",
quotaShareName = "string",
preemptionConfiguration = list(
preemptionRetriesBeforeTermination = 123
),
preemptionSummary = list(
preemptedAttemptCount = 123,
recentPreemptedAttempts = list(
list(
serviceResourceId = list(
name = "TrainingJobArn",
value = "string"
),
startedAt = 123,
stoppedAt = 123,
statusReason = "string"
)
)
),
startedAt = 123,
status = "SUBMITTED"|"PENDING"|"RUNNABLE"|"SCHEDULED"|"STARTING"|"RUNNING"|"SUCCEEDED"|"FAILED",
statusReason = "string",
stoppedAt = 123,
tags = list(
"string"
),
timeoutConfig = list(
attemptDurationSeconds = 123
)
)
Request syntax¶
svc$describe_service_job(
jobId = "string"
)