@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:41.352Z") @Stability(value=Stable) public interface BackupProps extends software.amazon.jsii.JsiiSerializable
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.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.*;
import software.amazon.awscdk.services.rds.*;
BackupProps backupProps = BackupProps.builder()
.retention(Duration.minutes(30))
// the properties below are optional
.preferredWindow("preferredWindow")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
BackupProps.Builder
A builder for
BackupProps |
static class |
BackupProps.Jsii$Proxy
An implementation for
BackupProps |
| Modifier and Type | Method and Description |
|---|---|
static BackupProps.Builder |
builder() |
default String |
getPreferredWindow()
A daily time range in 24-hours UTC format in which backups preferably execute.
|
Duration |
getRetention()
How many days to retain the backup.
|
@Stability(value=Stable) @NotNull Duration getRetention()
@Stability(value=Stable) @Nullable default String getPreferredWindow()
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
@Stability(value=Stable) static BackupProps.Builder builder()
BackupProps.Builder of BackupPropsCopyright © 2022. All rights reserved.