databricks-cdk
Version:
With this package databricks resources can be deployed with cdk
15 lines (14 loc) • 426 B
TypeScript
import { Construct } from "constructs";
import { CustomResource } from "aws-cdk-lib";
export interface SecretProperties {
workspaceUrl: string;
scope: string;
key: string;
stringValue: string;
}
export interface SecretProps extends SecretProperties {
readonly serviceToken: string;
}
export declare class Secret extends CustomResource {
constructor(scope: Construct, id: string, props: SecretProps);
}