UNPKG

databricks-cdk

Version:

With this package databricks resources can be deployed with cdk

14 lines (13 loc) 418 B
import { CustomResource } from "aws-cdk-lib"; import { Construct } from "constructs"; export interface DbfsFileProperties { workspaceUrl: string; path: string; base64Bytes: string; } export interface DbfsFileProps extends DbfsFileProperties { readonly serviceToken: string; } export declare class DbfsFile extends CustomResource { constructor(scope: Construct, id: string, props: DbfsFileProps); }