import { IEnvironmentAware } from "../environment-aware"; import * as constructs from "constructs"; /** * Indicates that this resource can be referenced as a MedicalTranscriptionJob. * * @stability experimental */ export interface IMedicalTranscriptionJobRef extends constructs.IConstruct, IEnvironmentAware { /** * A reference to a MedicalTranscriptionJob resource. */ readonly medicalTranscriptionJobRef: MedicalTranscriptionJobReference; } /** * A reference to a MedicalTranscriptionJob resource. * * @struct * @stability external */ export interface MedicalTranscriptionJobReference { /** * The Arn of the MedicalTranscriptionJob resource. */ readonly medicalTranscriptionJobArn: string; } /** * Indicates that this resource can be referenced as a VocabularyFilter. * * @stability experimental */ export interface IVocabularyFilterRef extends constructs.IConstruct, IEnvironmentAware { /** * A reference to a VocabularyFilter resource. */ readonly vocabularyFilterRef: VocabularyFilterReference; } /** * A reference to a VocabularyFilter resource. * * @struct * @stability external */ export interface VocabularyFilterReference { /** * The Arn of the VocabularyFilter resource. */ readonly vocabularyFilterArn: string; }