interface BackupProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.RDS.BackupProps |
Java | software.amazon.awscdk.services.rds.BackupProps |
Python | aws_cdk.aws_rds.BackupProps |
TypeScript (source) | @aws-cdk/aws-rds » BackupProps |
Backup configuration for RDS databases.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as rds from '@aws-cdk/aws-rds';
import * as cdk from '@aws-cdk/core';
const backupProps: rds.BackupProps = {
retention: cdk.Duration.minutes(30),
// the properties below are optional
preferredWindow: 'preferredWindow',
};
Properties
Name | Type | Description |
---|---|---|
retention | Duration | How many days to retain the backup. |
preferred | string | A daily time range in 24-hours UTC format in which backups preferably execute. |
retention
Type:
Duration
How many days to retain the backup.
preferredWindow?
Type:
string
(optional, default: a 30-minute window selected at random from an 8-hour block of
time for each AWS Region. To see the time blocks available, see
https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_WorkingWithAutomatedBackups.html#USER_WorkingWithAutomatedBackups.BackupWindow)
A daily time range in 24-hours UTC format in which backups preferably execute.
Must be at least 30 minutes long.
Example: '01:00-02:00'