Properties
Optional
ca
ca ?: string | string [] | Buffer | Buffer []
Defined in packages/shared/sdk-server/dist/api/options/LDTLSOptions.d.ts:10
Optional
cert
cert ?: string | string [] | Buffer | Buffer []
Defined in packages/shared/sdk-server/dist/api/options/LDTLSOptions.d.ts:11
Optional
check Server Identity
check Server Identity ?: ( ( servername , cert ) => undefined | Error )
Type declaration
( servername , cert ) : undefined | Error
Parameters
servername : string
cert : any
Returns undefined | Error
Defined in packages/shared/sdk-server/dist/api/options/LDTLSOptions.d.ts:12
Optional
ciphers
ciphers ?: string
Defined in packages/shared/sdk-server/dist/api/options/LDTLSOptions.d.ts:13
Optional
key
key ?: string | string [] | Buffer | Buffer [] | object []
Defined in packages/shared/sdk-server/dist/api/options/LDTLSOptions.d.ts:15
Optional
passphrase
passphrase ?: string
Defined in packages/shared/sdk-server/dist/api/options/LDTLSOptions.d.ts:16
Optional
pfx
pfx ?: string | string [] | Buffer | Buffer [] | object []
Defined in packages/shared/sdk-server/dist/api/options/LDTLSOptions.d.ts:14
Optional
reject Unauthorized
reject Unauthorized ?: boolean
Defined in packages/shared/sdk-server/dist/api/options/LDTLSOptions.d.ts:17
Optional
secure Protocol
secure Protocol ?: string
Defined in packages/shared/sdk-server/dist/api/options/LDTLSOptions.d.ts:18
Optional
servername
servername ?: string
Defined in packages/shared/sdk-server/dist/api/options/LDTLSOptions.d.ts:19
Additional parameters to pass to the Node HTTPS API for secure requests. These can include any of the TLS-related parameters supported by
https.request()
, such asca
,cert
, andkey
.For more information, see the Node documentation for
https.request()
andtls.connect()
.