Type Alias BatchPredictionInput

Input values for creating a batch prediction configuration

type BatchPredictionInput = {
    data?: {
        attributes?: {
            aliasId?: AliasId;
            dataSetId?: DataSetId;
            deploymentId?: DeploymentId;
            description?: string;
            indexColumn?: IndexColumn;
            name?: EntityName;
            schedule?: BatchPredictionScheduleInputAttributes;
            writeback?: BatchPredictionWriteback;
        };
        type?: "batch-prediction";
    };
}
Index

Properties

Properties

data?: {
    attributes?: {
        aliasId?: AliasId;
        dataSetId?: DataSetId;
        deploymentId?: DeploymentId;
        description?: string;
        indexColumn?: IndexColumn;
        name?: EntityName;
        schedule?: BatchPredictionScheduleInputAttributes;
        writeback?: BatchPredictionWriteback;
    };
    type?: "batch-prediction";
}