Creates a job template. Job template stores values of StartJobRun API request in a
template and can be used to start a job run. Job template allows two use cases: avoid
repeating recurring StartJobRun API request values, enforcing certain values in StartJobRun
API request.
example
Use a bare-bones client and the command you need to make an API call.
Creates a job template. Job template stores values of StartJobRun API request in a template and can be used to start a job run. Job template allows two use cases: avoid repeating recurring StartJobRun API request values, enforcing certain values in StartJobRun API request.
Use a bare-bones client and the command you need to make an API call.
import { EMRContainersClient, CreateJobTemplateCommand } from "@aws-sdk/client-emr-containers"; // ES Modules import // const { EMRContainersClient, CreateJobTemplateCommand } = require("@aws-sdk/client-emr-containers"); // CommonJS import const client = new EMRContainersClient(config); const command = new CreateJobTemplateCommand(input); const response = await client.send(command);
CreateJobTemplateCommandInput for command's
input
shape.CreateJobTemplateCommandOutput for command's
response
shape.config for EMRContainersClient's
config
shape.