UNPKG

databricks-cdk

Version:

With this package databricks resources can be deployed with cdk

20 lines (19 loc) 561 B
import { CustomResource } from "aws-cdk-lib"; import { Construct } from "constructs"; export interface GroupUserMember { user_name: string; } export interface GroupGroupMember { group_name: string; } export interface GroupProperties { workspaceUrl: string; groupName: string; members: Array<GroupUserMember | GroupGroupMember>; } export interface GroupProps extends GroupProperties { readonly serviceToken: string; } export declare class Group extends CustomResource { constructor(scope: Construct, id: string, props: GroupProps); }