// Code generated by smithy-go-codegen DO NOT EDIT. package types type Algorithm string // Enum values for Algorithm const ( AlgorithmSgd Algorithm = "sgd" ) // Values returns all known values for Algorithm. Note that this can be expanded // in the future, and so it is only as up to date as the client. The ordering of // this slice is not guaranteed to be stable across updates. func (Algorithm) Values() []Algorithm { return []Algorithm{ "sgd", } } type BatchPredictionFilterVariable string // Enum values for BatchPredictionFilterVariable const ( BatchPredictionFilterVariableCreatedAt BatchPredictionFilterVariable = "CreatedAt" BatchPredictionFilterVariableLastUpdatedAt BatchPredictionFilterVariable = "LastUpdatedAt" BatchPredictionFilterVariableStatus BatchPredictionFilterVariable = "Status" BatchPredictionFilterVariableName BatchPredictionFilterVariable = "Name" BatchPredictionFilterVariableIamUser BatchPredictionFilterVariable = "IAMUser" BatchPredictionFilterVariableMlModelId BatchPredictionFilterVariable = "MLModelId" BatchPredictionFilterVariableDatasourceId BatchPredictionFilterVariable = "DataSourceId" BatchPredictionFilterVariableDataUri BatchPredictionFilterVariable = "DataURI" ) // Values returns all known values for BatchPredictionFilterVariable. Note that // this can be expanded in the future, and so it is only as up to date as the // client. The ordering of this slice is not guaranteed to be stable across // updates. func (BatchPredictionFilterVariable) Values() []BatchPredictionFilterVariable { return []BatchPredictionFilterVariable{ "CreatedAt", "LastUpdatedAt", "Status", "Name", "IAMUser", "MLModelId", "DataSourceId", "DataURI", } } type DataSourceFilterVariable string // Enum values for DataSourceFilterVariable const ( DataSourceFilterVariableCreatedAt DataSourceFilterVariable = "CreatedAt" DataSourceFilterVariableLastUpdatedAt DataSourceFilterVariable = "LastUpdatedAt" DataSourceFilterVariableStatus DataSourceFilterVariable = "Status" DataSourceFilterVariableName DataSourceFilterVariable = "Name" DataSourceFilterVariableDataUri DataSourceFilterVariable = "DataLocationS3" DataSourceFilterVariableIamUser DataSourceFilterVariable = "IAMUser" ) // Values returns all known values for DataSourceFilterVariable. Note that this // can be expanded in the future, and so it is only as up to date as the client. // The ordering of this slice is not guaranteed to be stable across updates. func (DataSourceFilterVariable) Values() []DataSourceFilterVariable { return []DataSourceFilterVariable{ "CreatedAt", "LastUpdatedAt", "Status", "Name", "DataLocationS3", "IAMUser", } } type DetailsAttributes string // Enum values for DetailsAttributes const ( DetailsAttributesPredictiveModelType DetailsAttributes = "PredictiveModelType" DetailsAttributesAlgorithm DetailsAttributes = "Algorithm" ) // Values returns all known values for DetailsAttributes. Note that this can be // expanded in the future, and so it is only as up to date as the client. The // ordering of this slice is not guaranteed to be stable across updates. func (DetailsAttributes) Values() []DetailsAttributes { return []DetailsAttributes{ "PredictiveModelType", "Algorithm", } } type EntityStatus string // Enum values for EntityStatus const ( EntityStatusPending EntityStatus = "PENDING" EntityStatusInprogress EntityStatus = "INPROGRESS" EntityStatusFailed EntityStatus = "FAILED" EntityStatusCompleted EntityStatus = "COMPLETED" EntityStatusDeleted EntityStatus = "DELETED" ) // Values returns all known values for EntityStatus. Note that this can be // expanded in the future, and so it is only as up to date as the client. The // ordering of this slice is not guaranteed to be stable across updates. func (EntityStatus) Values() []EntityStatus { return []EntityStatus{ "PENDING", "INPROGRESS", "FAILED", "COMPLETED", "DELETED", } } type EvaluationFilterVariable string // Enum values for EvaluationFilterVariable const ( EvaluationFilterVariableCreatedAt EvaluationFilterVariable = "CreatedAt" EvaluationFilterVariableLastUpdatedAt EvaluationFilterVariable = "LastUpdatedAt" EvaluationFilterVariableStatus EvaluationFilterVariable = "Status" EvaluationFilterVariableName EvaluationFilterVariable = "Name" EvaluationFilterVariableIamUser EvaluationFilterVariable = "IAMUser" EvaluationFilterVariableMlModelId EvaluationFilterVariable = "MLModelId" EvaluationFilterVariableDatasourceId EvaluationFilterVariable = "DataSourceId" EvaluationFilterVariableDataUri EvaluationFilterVariable = "DataURI" ) // Values returns all known values for EvaluationFilterVariable. Note that this // can be expanded in the future, and so it is only as up to date as the client. // The ordering of this slice is not guaranteed to be stable across updates. func (EvaluationFilterVariable) Values() []EvaluationFilterVariable { return []EvaluationFilterVariable{ "CreatedAt", "LastUpdatedAt", "Status", "Name", "IAMUser", "MLModelId", "DataSourceId", "DataURI", } } type MLModelFilterVariable string // Enum values for MLModelFilterVariable const ( MLModelFilterVariableCreatedAt MLModelFilterVariable = "CreatedAt" MLModelFilterVariableLastUpdatedAt MLModelFilterVariable = "LastUpdatedAt" MLModelFilterVariableStatus MLModelFilterVariable = "Status" MLModelFilterVariableName MLModelFilterVariable = "Name" MLModelFilterVariableIamUser MLModelFilterVariable = "IAMUser" MLModelFilterVariableTrainingDatasourceId MLModelFilterVariable = "TrainingDataSourceId" MLModelFilterVariableRealTimeEndpointStatus MLModelFilterVariable = "RealtimeEndpointStatus" MLModelFilterVariableMlModelType MLModelFilterVariable = "MLModelType" MLModelFilterVariableAlgorithm MLModelFilterVariable = "Algorithm" MLModelFilterVariableTrainingDataUri MLModelFilterVariable = "TrainingDataURI" ) // Values returns all known values for MLModelFilterVariable. Note that this can // be expanded in the future, and so it is only as up to date as the client. The // ordering of this slice is not guaranteed to be stable across updates. func (MLModelFilterVariable) Values() []MLModelFilterVariable { return []MLModelFilterVariable{ "CreatedAt", "LastUpdatedAt", "Status", "Name", "IAMUser", "TrainingDataSourceId", "RealtimeEndpointStatus", "MLModelType", "Algorithm", "TrainingDataURI", } } type MLModelType string // Enum values for MLModelType const ( MLModelTypeRegression MLModelType = "REGRESSION" MLModelTypeBinary MLModelType = "BINARY" MLModelTypeMulticlass MLModelType = "MULTICLASS" ) // Values returns all known values for MLModelType. Note that this can be expanded // in the future, and so it is only as up to date as the client. The ordering of // this slice is not guaranteed to be stable across updates. func (MLModelType) Values() []MLModelType { return []MLModelType{ "REGRESSION", "BINARY", "MULTICLASS", } } type RealtimeEndpointStatus string // Enum values for RealtimeEndpointStatus const ( RealtimeEndpointStatusNone RealtimeEndpointStatus = "NONE" RealtimeEndpointStatusReady RealtimeEndpointStatus = "READY" RealtimeEndpointStatusUpdating RealtimeEndpointStatus = "UPDATING" RealtimeEndpointStatusFailed RealtimeEndpointStatus = "FAILED" ) // Values returns all known values for RealtimeEndpointStatus. Note that this can // be expanded in the future, and so it is only as up to date as the client. The // ordering of this slice is not guaranteed to be stable across updates. func (RealtimeEndpointStatus) Values() []RealtimeEndpointStatus { return []RealtimeEndpointStatus{ "NONE", "READY", "UPDATING", "FAILED", } } type SortOrder string // Enum values for SortOrder const ( SortOrderAsc SortOrder = "asc" SortOrderDsc SortOrder = "dsc" ) // Values returns all known values for SortOrder. Note that this can be expanded // in the future, and so it is only as up to date as the client. The ordering of // this slice is not guaranteed to be stable across updates. func (SortOrder) Values() []SortOrder { return []SortOrder{ "asc", "dsc", } } type TaggableResourceType string // Enum values for TaggableResourceType const ( TaggableResourceTypeBatchPrediction TaggableResourceType = "BatchPrediction" TaggableResourceTypeDatasource TaggableResourceType = "DataSource" TaggableResourceTypeEvaluation TaggableResourceType = "Evaluation" TaggableResourceTypeMlModel TaggableResourceType = "MLModel" ) // Values returns all known values for TaggableResourceType. Note that this can be // expanded in the future, and so it is only as up to date as the client. The // ordering of this slice is not guaranteed to be stable across updates. func (TaggableResourceType) Values() []TaggableResourceType { return []TaggableResourceType{ "BatchPrediction", "DataSource", "Evaluation", "MLModel", } }