/** * @public * @enum */ export declare const SourceFormat: { readonly CCDA: "CCDA"; readonly CSV: "CSV"; }; /** * @public */ export type SourceFormat = (typeof SourceFormat)[keyof typeof SourceFormat]; /** * @public * @enum */ export declare const TargetFormat: { readonly FHIR_R4: "FHIR_R4"; }; /** * @public */ export type TargetFormat = (typeof TargetFormat)[keyof typeof TargetFormat]; /** * @public * @enum */ export declare const TransformationJobStatus: { readonly COMPLETED: "COMPLETED"; readonly COMPLETED_WITH_ERRORS: "COMPLETED_WITH_ERRORS"; readonly FAILED: "FAILED"; readonly IN_PROGRESS: "IN_PROGRESS"; readonly QUEUED: "QUEUED"; readonly SUBMITTED: "SUBMITTED"; }; /** * @public */ export type TransformationJobStatus = (typeof TransformationJobStatus)[keyof typeof TransformationJobStatus]; /** * @public * @enum */ export declare const AgentInputMessageType: { readonly NORMAL: "normal"; readonly USER_CONFIRMATION_RESPONSE: "confirmation_response"; }; /** * @public */ export type AgentInputMessageType = (typeof AgentInputMessageType)[keyof typeof AgentInputMessageType]; /** * @public * @enum */ export declare const AgentOutputMessageType: { readonly CHOICES: "choices"; readonly COMPLETE: "complete"; readonly ERROR: "error"; readonly INITIAL_GREETING: "INITIAL_GREETING"; readonly NORMAL: "normal"; readonly OPTIONS: "options"; readonly USER_CONFIRMATION_REQUEST: "confirmation"; }; /** * @public */ export type AgentOutputMessageType = (typeof AgentOutputMessageType)[keyof typeof AgentOutputMessageType]; /** * @public * @enum */ export declare const AnalyticsStatus: { readonly DISABLED: "DISABLED"; readonly DISABLING: "DISABLING"; readonly ENABLED: "ENABLED"; readonly ENABLING: "ENABLING"; readonly PAUSED: "PAUSED"; readonly PAUSING: "PAUSING"; }; /** * @public */ export type AnalyticsStatus = (typeof AnalyticsStatus)[keyof typeof AnalyticsStatus]; /** * @public * @enum */ export declare const AuthorizationStrategy: { readonly AWS_AUTH: "AWS_AUTH"; readonly SMARTV1: "SMART_ON_FHIR_V1"; readonly SMART_ON_FHIR: "SMART_ON_FHIR"; }; /** * @public */ export type AuthorizationStrategy = (typeof AuthorizationStrategy)[keyof typeof AuthorizationStrategy]; /** * @public * @enum */ export declare const CmkType: { readonly AO_CMK: "AWS_OWNED_KMS_KEY"; readonly CM_CMK: "CUSTOMER_MANAGED_KMS_KEY"; }; /** * @public */ export type CmkType = (typeof CmkType)[keyof typeof CmkType]; /** * @public * @enum */ export declare const FHIRVersion: { readonly R4: "R4"; }; /** * @public */ export type FHIRVersion = (typeof FHIRVersion)[keyof typeof FHIRVersion]; /** * @public * @enum */ export declare const NlpStatus: { readonly DISABLED: "DISABLED"; readonly DISABLING: "DISABLING"; readonly ENABLED: "ENABLED"; readonly ENABLING: "ENABLING"; }; /** * @public */ export type NlpStatus = (typeof NlpStatus)[keyof typeof NlpStatus]; /** * @public * @enum */ export declare const PreloadDataType: { readonly SYNTHEA: "SYNTHEA"; }; /** * @public */ export type PreloadDataType = (typeof PreloadDataType)[keyof typeof PreloadDataType]; /** * @public * @enum */ export declare const DatastoreStatus: { readonly ACTIVE: "ACTIVE"; readonly CREATE_FAILED: "CREATE_FAILED"; readonly CREATING: "CREATING"; readonly DELETED: "DELETED"; readonly DELETING: "DELETING"; readonly UPDATE_FAILED: "UPDATE_FAILED"; readonly UPDATING: "UPDATING"; }; /** * @public */ export type DatastoreStatus = (typeof DatastoreStatus)[keyof typeof DatastoreStatus]; /** * @public * @enum */ export declare const ErrorCategory: { readonly NON_RETRYABLE_ERROR: "NON_RETRYABLE_ERROR"; readonly RETRYABLE_ERROR: "RETRYABLE_ERROR"; }; /** * @public */ export type ErrorCategory = (typeof ErrorCategory)[keyof typeof ErrorCategory]; /** * @public * @enum */ export declare const JobStatus: { readonly CANCEL_COMPLETED: "CANCEL_COMPLETED"; readonly CANCEL_FAILED: "CANCEL_FAILED"; readonly CANCEL_IN_PROGRESS: "CANCEL_IN_PROGRESS"; readonly CANCEL_SUBMITTED: "CANCEL_SUBMITTED"; readonly COMPLETED: "COMPLETED"; readonly COMPLETED_WITH_ERRORS: "COMPLETED_WITH_ERRORS"; readonly FAILED: "FAILED"; readonly IN_PROGRESS: "IN_PROGRESS"; readonly QUEUED: "QUEUED"; readonly SUBMITTED: "SUBMITTED"; }; /** * @public */ export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus]; /** * @public * @enum */ export declare const ValidationLevel: { readonly MINIMAL: "minimal"; readonly STRICT: "strict"; readonly STRUCTURE_ONLY: "structure-only"; }; /** * @public */ export type ValidationLevel = (typeof ValidationLevel)[keyof typeof ValidationLevel];