ClusterPersistenceConfig

data class ClusterPersistenceConfig(val aofConfig: ClusterPersistenceConfigAofConfig? = null, val mode: String? = null, val rdbConfig: ClusterPersistenceConfigRdbConfig? = null)

Constructors

Link copied to clipboard
constructor(aofConfig: ClusterPersistenceConfigAofConfig? = null, mode: String? = null, rdbConfig: ClusterPersistenceConfigRdbConfig? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

AOF configuration. This field will be ignored if mode is not AOF. Structure is documented below.

Link copied to clipboard
val mode: String? = null

Optional. Controls whether Persistence features are enabled. If not provided, the existing value will be used.

Link copied to clipboard

RDB configuration. This field will be ignored if mode is not RDB. Structure is documented below.