DailyAutomaticBackupStartTime

class aws_cdk.aws_fsx.DailyAutomaticBackupStartTime(*, hour, minute)

Bases: object

Class for scheduling a daily automatic backup time.

ExampleMetadata:

infused

Example:

import aws_cdk as cdk


lustre_configuration = {
    # ...
    "automatic_backup_retention": cdk.Duration.days(3),  # backup retention
    "copy_tags_to_backups": True,  # if true, tags are copied to backups
    "daily_automatic_backup_start_time": fsx.DailyAutomaticBackupStartTime(hour=11, minute=30)
}
Parameters:
  • hour (Union[int, float]) – The hour of the day (from 0-23) for automatic backup starts.

  • minute (Union[int, float]) – The minute of the hour (from 0-59) for automatic backup starts.

Methods

to_timestamp()

Converts an hour, and minute into HH:MM string.

Return type:

str