SecretBackendConnectionRedisArgs

data class SecretBackendConnectionRedisArgs(val caCert: Output<String>? = null, val host: Output<String>, val insecureTls: Output<Boolean>? = null, val password: Output<String>, val port: Output<Int>? = null, val tls: Output<Boolean>? = null, val username: Output<String>) : ConvertibleToJava<SecretBackendConnectionRedisArgs>

Constructors

Link copied to clipboard
constructor(caCert: Output<String>? = null, host: Output<String>, insecureTls: Output<Boolean>? = null, password: Output<String>, port: Output<Int>? = null, tls: Output<Boolean>? = null, username: Output<String>)

Properties

Link copied to clipboard
val caCert: Output<String>? = null

The contents of a PEM-encoded CA cert file to use to verify the Redis server's identity.

Link copied to clipboard
val host: Output<String>

Specifies the host to connect to

Link copied to clipboard
val insecureTls: Output<Boolean>? = null

Specifies whether to skip verification of the server certificate when using TLS.

Link copied to clipboard
val password: Output<String>

Specifies the password corresponding to the given username.

Link copied to clipboard
val port: Output<Int>? = null

The transport port to use to connect to Redis.

Link copied to clipboard
val tls: Output<Boolean>? = null

Specifies whether to use TLS when connecting to Redis.

Link copied to clipboard
val username: Output<String>

Specifies the username for Vault to use.

Functions

Link copied to clipboard
open override fun toJava(): SecretBackendConnectionRedisArgs