databricks-cdk
Version:
With this package databricks resources can be deployed with cdk
16 lines (15 loc) • 465 B
TypeScript
import { Construct } from "constructs";
import { CustomResource } from "aws-cdk-lib";
export interface TokenProperties {
workspaceUrl: string;
tokenName: string;
comment?: string;
lifetimeSeconds?: number;
}
export interface TokenProps extends TokenProperties {
readonly serviceToken: string;
}
export declare class Token extends CustomResource {
constructor(scope: Construct, id: string, props: TokenProps);
tokenSecretArn(): string;
}