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

CreateJobTemplateRequest

import type { CreateJobTemplateRequest } from "https://aws-api.deno.dev/v0.4/services/emrcontainers.ts?docs=full";
interface CreateJobTemplateRequest {
clientToken: string;
jobTemplateData: JobTemplateData;
kmsKeyArn?: string | null;
name: string;
tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
clientToken: string
[src]

The client token 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
[src]

The specified name of the job template.

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

The tags that are associated with the job template.