UNPKG

databricks-cdk

Version:

With this package databricks resources can be deployed with cdk

14 lines (13 loc) 525 B
import { CustomResource } from "aws-cdk-lib"; import { Construct } from "constructs"; export interface ServicePrincipalSecretsProperties { service_principal_id: string; } export interface ServicePrincipalSecretsProps extends ServicePrincipalSecretsProperties { readonly serviceToken: string; } export declare class ServicePrincipalSecrets extends CustomResource { constructor(scope: Construct, id: string, props: ServicePrincipalSecretsProps); secretsManagerArn(): string; secretsManagerName(): string; }