UNPKG

databricks-cdk

Version:

With this package databricks resources can be deployed with cdk

14 lines (13 loc) 419 B
import { CustomResource } from "aws-cdk-lib"; import { Construct } from "constructs"; export interface ScimUserProperties { workspaceUrl: string; userName: string; } export interface ScimUserProps extends ScimUserProperties { readonly serviceToken: string; } export declare class ScimUser extends CustomResource { constructor(scope: Construct, id: string, props: ScimUserProps); userId(): string; }