BackupRetentionSettingsArgs

data class BackupRetentionSettingsArgs(val retainedBackups: Output<Int>? = null, val retentionUnit: Output<BackupRetentionSettingsRetentionUnit>? = null) : ConvertibleToJava<BackupRetentionSettingsArgs>

We currently only support backup retention by specifying the number of backups we will retain.

Constructors

Link copied to clipboard
fun BackupRetentionSettingsArgs(retainedBackups: Output<Int>? = null, retentionUnit: Output<BackupRetentionSettingsRetentionUnit>? = null)

Functions

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

Properties

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

Depending on the value of retention_unit, this is used to determine if a backup needs to be deleted. If retention_unit is 'COUNT', we will retain this many backups.

Link copied to clipboard

The unit that 'retained_backups' represents.