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

JobExecutionSettings

import type { JobExecutionSettings } from "https://aws-api.deno.dev/v0.3/services/transcribeservice.ts?docs=full";

Provides information about when a transcription job should be executed.

interface JobExecutionSettings {
AllowDeferredExecution?: boolean | null;
DataAccessRoleArn?: string | null;
}

§Properties

§
AllowDeferredExecution?: boolean | null
[src]

Indicates whether a job should be queued by Amazon Transcribe when the concurrent execution limit is exceeded. When the AllowDeferredExecution field is true, jobs are queued and executed when the number of executing jobs falls below the concurrent execution limit. If the field is false, Amazon Transcribe returns a LimitExceededException exception.

Note that job queuing is enabled by default for call analytics jobs.

If you specify the AllowDeferredExecution field, you must specify the DataAccessRoleArn field.

§
DataAccessRoleArn?: string | null
[src]

The Amazon Resource Name (ARN), in the form arn:partition:service:region:account-id:resource-type/resource-id, of a role that has access to the S3 bucket that contains the input files. Amazon Transcribe assumes this role to read queued media files. If you have specified an output S3 bucket for the transcription results, this role should have access to the output bucket as well.

If you specify the AllowDeferredExecution field, you must specify the DataAccessRoleArn field.