UNPKG

databricks-cdk

Version:

With this package databricks resources can be deployed with cdk

18 lines (17 loc) 645 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.UnityCatalogExternalLocation = void 0; const aws_cdk_lib_1 = require("aws-cdk-lib"); class UnityCatalogExternalLocation extends aws_cdk_lib_1.CustomResource { constructor(scope, id, props) { super(scope, id, { serviceToken: props.serviceToken, properties: { action: "unity-external-location", workspace_url: props.workspace_url, external_location: props.external_location, } }); } } exports.UnityCatalogExternalLocation = UnityCatalogExternalLocation;