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

AppliedTerminology

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

The custom terminology applied to the input text by Amazon Translate for the translated text response. This is optional in the response and will only be present if you specified terminology input in the request. Currently, only one terminology can be applied per TranslateText request.

interface AppliedTerminology {
Name?: string | null;
Terms?: Term[] | null;
}

§Properties

§
Name?: string | null
[src]

The name of the custom terminology applied to the input text by Amazon Translate for the translated text response.

§
Terms?: Term[] | null
[src]

The specific terms of the custom terminology applied to the input text by Amazon Translate for the translated text response. A maximum of 250 terms will be returned, and the specific terms applied will be the first 250 terms in the source text.