Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

JobTemplate

import type { JobTemplate } from "https://aws-api.deno.dev/v0.4/services/emrcontainers.ts?docs=full";

This entity describes 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.

interface JobTemplate {
arn?: string | null;
createdAt?: Date | number | null;
createdBy?: string | null;
decryptionError?: string | null;
id?: string | null;
jobTemplateData: JobTemplateData;
kmsKeyArn?: string | null;
name?: string | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
arn?: string | null
[src]

The ARN of the job template.

§
createdAt?: Date | number | null
[src]

The date and time when the job template was created.

§
createdBy?: string | null
[src]

The user who created the job template.

§
decryptionError?: string | null
[src]

The error message in case the decryption of job template fails.

§
id?: string | null
[src]

The ID of the job template.

§
jobTemplateData: JobTemplateData
[src]

The job template data which holds values of StartJobRun API request.

§
kmsKeyArn?: string | null
[src]

The KMS key ARN used to encrypt the job template.

§
name?: string | null
[src]

The name of the job template.

§
tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

The tags assigned to the job template.