Displays detailed information about a job run. A job run is a unit of work, such as a Spark jar, PySpark script, or SparkSQL query, that you submit to Amazon EMR on EKS.
Use a bare-bones client and the command you need to make an API call.
import { EMRContainersClient, DescribeJobRunCommand } from "@aws-sdk/client-emr-containers"; // ES Modules import // const { EMRContainersClient, DescribeJobRunCommand } = require("@aws-sdk/client-emr-containers"); // CommonJS import const client = new EMRContainersClient(config); const command = new DescribeJobRunCommand(input); const response = await client.send(command);
DescribeJobRunCommandInput for command's input shape.
input
DescribeJobRunCommandOutput for command's response shape.
response
config for EMRContainersClient's config shape.
config
Displays detailed information about a job run. A job run is a unit of work, such as a Spark jar, PySpark script, or SparkSQL query, that you submit to Amazon EMR on EKS.
Use a bare-bones client and the command you need to make an API call.
import { EMRContainersClient, DescribeJobRunCommand } from "@aws-sdk/client-emr-containers"; // ES Modules import // const { EMRContainersClient, DescribeJobRunCommand } = require("@aws-sdk/client-emr-containers"); // CommonJS import const client = new EMRContainersClient(config); const command = new DescribeJobRunCommand(input); const response = await client.send(command);
DescribeJobRunCommandInput for command's
input
shape.DescribeJobRunCommandOutput for command's
response
shape.config for EMRContainersClient's
config
shape.