databricks-cdk
Version:
With this package databricks resources can be deployed with cdk
20 lines (19 loc) • 646 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Experiment = void 0;
const aws_cdk_lib_1 = require("aws-cdk-lib");
class Experiment extends aws_cdk_lib_1.CustomResource {
constructor(scope, id, props) {
super(scope, id, {
serviceToken: props.serviceToken,
properties: {
action: "mlflow-experiment",
workspace_url: props.workspaceUrl,
artifact_location: props.artifactLocation,
name: props.name,
description: props.description
}
});
}
}
exports.Experiment = Experiment;