@awlsring/cdktf-surreal-backend
Version:
A package that vends a construct to setup the surreal backend in CDKTF
14 lines (13 loc) • 436 B
TypeScript
import { HttpBackend } from 'cdktf';
import { Construct } from 'constructs';
export interface SurrealBackendProps {
readonly address: string;
readonly username: string;
readonly password: string;
readonly project: string;
readonly stack: string;
readonly skipCertVerification?: boolean;
}
export declare class SurrealBackend extends HttpBackend {
constructor(scope: Construct, props: SurrealBackendProps);
}