UNPKG

databricks-cdk

Version:

With this package databricks resources can be deployed with cdk

15 lines (14 loc) 509 B
import { CustomResource } from "aws-cdk-lib"; import { Construct } from "constructs"; export interface InstanceProfileProperties { workspaceUrl: string; instanceProfileArn: string; isMetaInstanceProfile?: boolean; skipValidation?: boolean; } export interface InstanceProfileProps extends InstanceProfileProperties { readonly serviceToken: string; } export declare class InstanceProfile extends CustomResource { constructor(scope: Construct, id: string, props: InstanceProfileProps); }