interface DailyAutomaticBackupStartTimeProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.FSx.DailyAutomaticBackupStartTimeProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsfsx#DailyAutomaticBackupStartTimeProps |
![]() | software.amazon.awscdk.services.fsx.DailyAutomaticBackupStartTimeProps |
![]() | aws_cdk.aws_fsx.DailyAutomaticBackupStartTimeProps |
![]() | aws-cdk-lib » aws_fsx » DailyAutomaticBackupStartTimeProps |
Properties required for setting up a daily automatic backup time.
Example
import * as cdk from 'aws-cdk-lib';
const lustreConfiguration = {
// ...
automaticBackupRetention: cdk.Duration.days(3), // backup retention
copyTagsToBackups: true, // if true, tags are copied to backups
dailyAutomaticBackupStartTime: new fsx.DailyAutomaticBackupStartTime({ hour: 11, minute: 30 }), // backup window
// ...
}
Properties
Name | Type | Description |
---|---|---|
hour | number | The hour of the day (from 0-23) for automatic backup starts. |
minute | number | The minute of the hour (from 0-59) for automatic backup starts. |
hour
Type:
number
The hour of the day (from 0-23) for automatic backup starts.
minute
Type:
number
The minute of the hour (from 0-59) for automatic backup starts.