/** * @public * @enum */ export declare const ActStatus: { readonly FAILED: "FAILED"; readonly PENDING_CLIENT_ACTION: "PENDING_CLIENT_ACTION"; readonly PENDING_HUMAN_ACTION: "PENDING_HUMAN_ACTION"; readonly RUNNING: "RUNNING"; readonly SUCCEEDED: "SUCCEEDED"; readonly TIMED_OUT: "TIMED_OUT"; }; /** * @public */ export type ActStatus = (typeof ActStatus)[keyof typeof ActStatus]; /** * @public * @enum */ export declare const InternalServerExceptionReason: { readonly INVALID_MODEL_GENERATION: "InvalidModelGeneration"; readonly TOKEN_LIMIT_EXCEEDED: "RequestTokenLimitExceeded"; }; /** * @public */ export type InternalServerExceptionReason = (typeof InternalServerExceptionReason)[keyof typeof InternalServerExceptionReason]; /** * @public * @enum */ export declare const ValidationExceptionReason: { readonly FIELD_VALIDATION_FAILED: "FieldValidationFailed"; readonly GUARDRAIL_INTERVENED: "GuardrailIntervened"; readonly INVALID_STATUS: "InvalidStatus"; }; /** * @public */ export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason]; /** * @public * @enum */ export declare const SortOrder: { readonly ASC: "Ascending"; readonly DESC: "Descending"; }; /** * @public */ export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder]; /** * @public * @enum */ export declare const TraceLocationType: { readonly S3: "S3"; }; /** * @public */ export type TraceLocationType = (typeof TraceLocationType)[keyof typeof TraceLocationType]; /** * @public * @enum */ export declare const ModelStatus: { readonly ACTIVE: "ACTIVE"; readonly DEPRECATED: "DEPRECATED"; readonly LEGACY: "LEGACY"; readonly PREVIEW: "PREVIEW"; }; /** * @public */ export type ModelStatus = (typeof ModelStatus)[keyof typeof ModelStatus]; /** * @public * @enum */ export declare const WorkflowDefinitionStatus: { readonly ACTIVE: "ACTIVE"; readonly DELETING: "DELETING"; }; /** * @public */ export type WorkflowDefinitionStatus = (typeof WorkflowDefinitionStatus)[keyof typeof WorkflowDefinitionStatus]; /** * @public * @enum */ export declare const WorkflowRunStatus: { readonly DELETING: "DELETING"; readonly FAILED: "FAILED"; readonly RUNNING: "RUNNING"; readonly SUCCEEDED: "SUCCEEDED"; readonly TIMED_OUT: "TIMED_OUT"; }; /** * @public */ export type WorkflowRunStatus = (typeof WorkflowRunStatus)[keyof typeof WorkflowRunStatus];