databricks-cdk
Version:
With this package databricks resources can be deployed with cdk
19 lines (18 loc) • 620 B
TypeScript
import { CustomResource } from "aws-cdk-lib";
import { Construct } from "constructs";
export interface UnityCatalogCatalogSettings {
name: string;
comment?: string;
properties?: Map<string, string>;
owner?: string;
}
export interface UnityCatalogCatalogProperties {
workspace_url: string;
catalog: UnityCatalogCatalogSettings;
}
export interface UnityCatalogCatalogProps extends UnityCatalogCatalogProperties {
readonly serviceToken: string;
}
export declare class UnityCatalogCatalog extends CustomResource {
constructor(scope: Construct, id: string, props: UnityCatalogCatalogProps);
}