/** * @public * @enum */ export declare const AsyncJobStatus: { readonly CANCELED: "CANCELED"; readonly CANCEL_IN_PROGRESS: "CANCEL_IN_PROGRESS"; readonly COMPLETE: "COMPLETE"; readonly FAILED: "FAILED"; readonly IN_PROGRESS: "IN_PROGRESS"; readonly IN_PROGRESS_INITIALIZING: "IN_PROGRESS_INITIALIZING"; }; /** * @public */ export type AsyncJobStatus = (typeof AsyncJobStatus)[keyof typeof AsyncJobStatus]; /** * @public * @enum */ export declare const DataSource: { readonly EVENT: "EVENT"; readonly EXTERNAL_MODEL_SCORE: "EXTERNAL_MODEL_SCORE"; readonly MODEL_SCORE: "MODEL_SCORE"; }; /** * @public */ export type DataSource = (typeof DataSource)[keyof typeof DataSource]; /** * @public * @enum */ export declare const DataType: { readonly BOOLEAN: "BOOLEAN"; readonly DATETIME: "DATETIME"; readonly FLOAT: "FLOAT"; readonly INTEGER: "INTEGER"; readonly STRING: "STRING"; }; /** * @public */ export type DataType = (typeof DataType)[keyof typeof DataType]; /** * @public * @enum */ export declare const ModelTypeEnum: { readonly ACCOUNT_TAKEOVER_INSIGHTS: "ACCOUNT_TAKEOVER_INSIGHTS"; readonly ONLINE_FRAUD_INSIGHTS: "ONLINE_FRAUD_INSIGHTS"; readonly TRANSACTION_FRAUD_INSIGHTS: "TRANSACTION_FRAUD_INSIGHTS"; }; /** * @public */ export type ModelTypeEnum = (typeof ModelTypeEnum)[keyof typeof ModelTypeEnum]; /** * @public * @enum */ export declare const RuleExecutionMode: { readonly ALL_MATCHED: "ALL_MATCHED"; readonly FIRST_MATCHED: "FIRST_MATCHED"; }; /** * @public */ export type RuleExecutionMode = (typeof RuleExecutionMode)[keyof typeof RuleExecutionMode]; /** * @public * @enum */ export declare const DetectorVersionStatus: { readonly ACTIVE: "ACTIVE"; readonly DRAFT: "DRAFT"; readonly INACTIVE: "INACTIVE"; }; /** * @public */ export type DetectorVersionStatus = (typeof DetectorVersionStatus)[keyof typeof DetectorVersionStatus]; /** * @public * @enum */ export declare const UnlabeledEventsTreatment: { readonly AUTO: "AUTO"; readonly FRAUD: "FRAUD"; readonly IGNORE: "IGNORE"; readonly LEGIT: "LEGIT"; }; /** * @public */ export type UnlabeledEventsTreatment = (typeof UnlabeledEventsTreatment)[keyof typeof UnlabeledEventsTreatment]; /** * @public * @enum */ export declare const TrainingDataSourceEnum: { readonly EXTERNAL_EVENTS: "EXTERNAL_EVENTS"; readonly INGESTED_EVENTS: "INGESTED_EVENTS"; }; /** * @public */ export type TrainingDataSourceEnum = (typeof TrainingDataSourceEnum)[keyof typeof TrainingDataSourceEnum]; /** * @public * @enum */ export declare const Language: { readonly DETECTORPL: "DETECTORPL"; }; /** * @public */ export type Language = (typeof Language)[keyof typeof Language]; /** * @public * @enum */ export declare const ModelSource: { readonly SAGEMAKER: "SAGEMAKER"; }; /** * @public */ export type ModelSource = (typeof ModelSource)[keyof typeof ModelSource]; /** * @public * @enum */ export declare const EventIngestion: { readonly DISABLED: "DISABLED"; readonly ENABLED: "ENABLED"; }; /** * @public */ export type EventIngestion = (typeof EventIngestion)[keyof typeof EventIngestion]; /** * @public * @enum */ export declare const ModelInputDataFormat: { readonly CSV: "TEXT_CSV"; readonly JSON: "APPLICATION_JSON"; }; /** * @public */ export type ModelInputDataFormat = (typeof ModelInputDataFormat)[keyof typeof ModelInputDataFormat]; /** * @public * @enum */ export declare const ModelEndpointStatus: { readonly ASSOCIATED: "ASSOCIATED"; readonly DISSOCIATED: "DISSOCIATED"; }; /** * @public */ export type ModelEndpointStatus = (typeof ModelEndpointStatus)[keyof typeof ModelEndpointStatus]; /** * @public * @enum */ export declare const ModelOutputDataFormat: { readonly CSV: "TEXT_CSV"; readonly JSONLINES: "APPLICATION_JSONLINES"; }; /** * @public */ export type ModelOutputDataFormat = (typeof ModelOutputDataFormat)[keyof typeof ModelOutputDataFormat]; /** * @public * @enum */ export declare const ListUpdateMode: { readonly APPEND: "APPEND"; readonly REMOVE: "REMOVE"; readonly REPLACE: "REPLACE"; }; /** * @public */ export type ListUpdateMode = (typeof ListUpdateMode)[keyof typeof ListUpdateMode]; /** * @public * @enum */ export declare const ModelVersionStatus: { readonly ACTIVE: "ACTIVE"; readonly INACTIVE: "INACTIVE"; readonly TRAINING_CANCELLED: "TRAINING_CANCELLED"; }; /** * @public */ export type ModelVersionStatus = (typeof ModelVersionStatus)[keyof typeof ModelVersionStatus];