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

InputDataConfig

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

The object that contains the Amazon S3 object location and access role required to train and tune your custom language model.

interface InputDataConfig {
DataAccessRoleArn: string;
S3Uri: string;
TuningDataS3Uri?: string | null;
}

§Properties

§
DataAccessRoleArn: string
[src]

The Amazon Resource Name (ARN) that uniquely identifies the permissions you've given Amazon Transcribe to access your Amazon S3 buckets containing your media files or text data. ARNs have the format arn:partition:service:region:account-id:resource-type/resource-id.

§
S3Uri: string
[src]

The Amazon S3 prefix you specify to access the plain text files that you use to train your custom language model.

§
TuningDataS3Uri?: string | null
[src]

The Amazon S3 prefix you specify to access the plain text files that you use to tune your custom language model.