Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ContinuousBackupConfig

import type { ContinuousBackupConfig } from "https://googleapis.deno.dev/v1/alloydb:v1.ts";

ContinuousBackupConfig describes the continuous backups recovery configurations of a cluster.

interface ContinuousBackupConfig {
enabled?: boolean;
encryptionConfig?: EncryptionConfig;
recoveryWindowDays?: number;
}

§Properties

§
enabled?: boolean
[src]

Whether ContinuousBackup is enabled.

§
encryptionConfig?: EncryptionConfig
[src]

The encryption config can be specified to encrypt the backups with a customer-managed encryption key (CMEK). When this field is not specified, the backup will then use default encryption scheme to protect the user data.

§
recoveryWindowDays?: number
[src]

The number of days that are eligible to restore from using PITR. To support the entire recovery window, backups and logs are retained for one day more than the recovery window. If not set, defaults to 14 days.