databricks-cdk
Version:
With this package databricks resources can be deployed with cdk
16 lines (15 loc) • 554 B
TypeScript
import { CustomResource } from "aws-cdk-lib";
import { Construct } from "constructs";
export interface AccountNetworkProperties {
readonly networkName: string;
readonly vpcId: string;
readonly subnet_ids: Array<string>;
readonly security_group_ids: Array<string>;
}
export interface AccountNetworkProps extends AccountNetworkProperties {
readonly serviceToken: string;
}
export declare class AccountNetwork extends CustomResource {
constructor(scope: Construct, id: string, props: AccountNetworkProps);
networkId(): string;
}