UNPKG

@pulumi/aws-native

Version:

The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)

26 lines (25 loc) 892 B
import * as pulumi from "@pulumi/pulumi"; import * as enums from "../types/enums"; /** * Represents a custom dictionary for improving transcription accuracy */ export declare function getDictionary(args: GetDictionaryArgs, opts?: pulumi.InvokeOptions): Promise<GetDictionaryResult>; export interface GetDictionaryArgs { id: string; } export interface GetDictionaryResult { readonly arn?: string; readonly id?: string; readonly language?: enums.elementalinference.DictionaryLanguage; readonly name?: string; readonly tags?: { [key: string]: string; }; } /** * Represents a custom dictionary for improving transcription accuracy */ export declare function getDictionaryOutput(args: GetDictionaryOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetDictionaryResult>; export interface GetDictionaryOutputArgs { id: pulumi.Input<string>; }