Skip to main content

Home > git-documentdb > ConnectionSettingsSSH

ConnectionSettingsSSH type#

Connection settings for SSH

Signature:
export declare type ConnectionSettingsSSH = {
type: 'ssh';
engine?: string;
privateKeyPath: string;
publicKeyPath: string;
passPhrase?: string;
};