Interface IBackupProps
Backup configuration for RDS databases.
Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.AWS.RDS.dll
Syntax (csharp)
public interface IBackupProps
Syntax (vb)
Public Interface IBackupProps
Remarks
Default: - The retention period for automated backups is 1 day. The preferred backup window will be a 30-minute window selected at random from an 8-hour block of time for each AWS Region.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.RDS;
using Amazon.CDK;
var backupProps = new BackupProps {
Retention = Duration.Minutes(30),
// the properties below are optional
PreferredWindow = "preferredWindow"
};
Synopsis
Properties
PreferredWindow | A daily time range in 24-hours UTC format in which backups preferably execute. |
Retention | How many days to retain the backup. |
Properties
PreferredWindow
A daily time range in 24-hours UTC format in which backups preferably execute.
virtual string PreferredWindow { get; }
Property Value
System.String
Remarks
Must be at least 30 minutes long.
Example: '01:00-02:00'
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