UNPKG

databricks-cdk

Version:

With this package databricks resources can be deployed with cdk

15 lines (14 loc) 460 B
import { Construct } from "constructs"; import { CustomResource } from "aws-cdk-lib"; export interface ExperimentProperties { workspaceUrl: string; artifactLocation?: string; name: string; description?: string; } export interface ExperimentProps extends ExperimentProperties { readonly serviceToken: string; } export declare class Experiment extends CustomResource { constructor(scope: Construct, id: string, props: ExperimentProps); }