/** * @public * @enum */ export declare const TaggableResourceType: { readonly BATCH_PREDICTION: "BatchPrediction"; readonly DATASOURCE: "DataSource"; readonly EVALUATION: "Evaluation"; readonly ML_MODEL: "MLModel"; }; /** * @public */ export type TaggableResourceType = (typeof TaggableResourceType)[keyof typeof TaggableResourceType]; /** * @public * @enum */ export declare const Algorithm: { readonly SGD: "sgd"; }; /** * @public */ export type Algorithm = (typeof Algorithm)[keyof typeof Algorithm]; /** * @public * @enum */ export declare const MLModelType: { readonly BINARY: "BINARY"; readonly MULTICLASS: "MULTICLASS"; readonly REGRESSION: "REGRESSION"; }; /** * @public */ export type MLModelType = (typeof MLModelType)[keyof typeof MLModelType]; /** * @public * @enum */ export declare const RealtimeEndpointStatus: { readonly FAILED: "FAILED"; readonly NONE: "NONE"; readonly READY: "READY"; readonly UPDATING: "UPDATING"; }; /** * @public */ export type RealtimeEndpointStatus = (typeof RealtimeEndpointStatus)[keyof typeof RealtimeEndpointStatus]; /** * @public * @enum */ export declare const BatchPredictionFilterVariable: { readonly CREATED_AT: "CreatedAt"; readonly DATASOURCE_ID: "DataSourceId"; readonly DATA_URI: "DataURI"; readonly IAM_USER: "IAMUser"; readonly LAST_UPDATED_AT: "LastUpdatedAt"; readonly ML_MODEL_ID: "MLModelId"; readonly NAME: "Name"; readonly STATUS: "Status"; }; /** * @public */ export type BatchPredictionFilterVariable = (typeof BatchPredictionFilterVariable)[keyof typeof BatchPredictionFilterVariable]; /** * @public * @enum */ export declare const SortOrder: { readonly ASC: "asc"; readonly DSC: "dsc"; }; /** * @public */ export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder]; /** * @public * @enum */ export declare const EntityStatus: { readonly COMPLETED: "COMPLETED"; readonly DELETED: "DELETED"; readonly FAILED: "FAILED"; readonly INPROGRESS: "INPROGRESS"; readonly PENDING: "PENDING"; }; /** * @public */ export type EntityStatus = (typeof EntityStatus)[keyof typeof EntityStatus]; /** * @public * @enum */ export declare const DataSourceFilterVariable: { readonly CREATED_AT: "CreatedAt"; readonly DATA_URI: "DataLocationS3"; readonly IAM_USER: "IAMUser"; readonly LAST_UPDATED_AT: "LastUpdatedAt"; readonly NAME: "Name"; readonly STATUS: "Status"; }; /** * @public */ export type DataSourceFilterVariable = (typeof DataSourceFilterVariable)[keyof typeof DataSourceFilterVariable]; /** * @public * @enum */ export declare const EvaluationFilterVariable: { readonly CREATED_AT: "CreatedAt"; readonly DATASOURCE_ID: "DataSourceId"; readonly DATA_URI: "DataURI"; readonly IAM_USER: "IAMUser"; readonly LAST_UPDATED_AT: "LastUpdatedAt"; readonly ML_MODEL_ID: "MLModelId"; readonly NAME: "Name"; readonly STATUS: "Status"; }; /** * @public */ export type EvaluationFilterVariable = (typeof EvaluationFilterVariable)[keyof typeof EvaluationFilterVariable]; /** * @public * @enum */ export declare const MLModelFilterVariable: { readonly ALGORITHM: "Algorithm"; readonly CREATED_AT: "CreatedAt"; readonly IAM_USER: "IAMUser"; readonly LAST_UPDATED_AT: "LastUpdatedAt"; readonly ML_MODEL_TYPE: "MLModelType"; readonly NAME: "Name"; readonly REAL_TIME_ENDPOINT_STATUS: "RealtimeEndpointStatus"; readonly STATUS: "Status"; readonly TRAINING_DATASOURCE_ID: "TrainingDataSourceId"; readonly TRAINING_DATA_URI: "TrainingDataURI"; }; /** * @public */ export type MLModelFilterVariable = (typeof MLModelFilterVariable)[keyof typeof MLModelFilterVariable]; /** * @public * @enum */ export declare const DetailsAttributes: { readonly ALGORITHM: "Algorithm"; readonly PREDICTIVE_MODEL_TYPE: "PredictiveModelType"; }; /** * @public */ export type DetailsAttributes = (typeof DetailsAttributes)[keyof typeof DetailsAttributes];