Class: Aws::FSx::Types::UpdateFileSystemWindowsConfiguration

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-fsx/types.rb

Overview

Note:

When making an API call, you may pass UpdateFileSystemWindowsConfiguration data as a hash:

{
  weekly_maintenance_start_time: "WeeklyTime",
  daily_automatic_backup_start_time: "DailyTime",
  automatic_backup_retention_days: 1,
}

The configuration object for the Microsoft Windows file system used in the ‘UpdateFileSystem` operation.

Instance Attribute Summary collapse

Instance Attribute Details

#automatic_backup_retention_daysInteger

The number of days to retain automatic backups. Setting this to 0 disables automatic backups. You can retain automatic backups for a maximum of 35 days.

Returns:

  • (Integer)


1290
1291
1292
1293
1294
1295
# File 'lib/aws-sdk-fsx/types.rb', line 1290

class UpdateFileSystemWindowsConfiguration < Struct.new(
  :weekly_maintenance_start_time,
  :daily_automatic_backup_start_time,
  :automatic_backup_retention_days)
  include Aws::Structure
end

#daily_automatic_backup_start_timeString

The preferred time to take daily automatic backups, in the UTC time zone.

Returns:

  • (String)


1290
1291
1292
1293
1294
1295
# File 'lib/aws-sdk-fsx/types.rb', line 1290

class UpdateFileSystemWindowsConfiguration < Struct.new(
  :weekly_maintenance_start_time,
  :daily_automatic_backup_start_time,
  :automatic_backup_retention_days)
  include Aws::Structure
end

#weekly_maintenance_start_timeString

The preferred time to perform weekly maintenance, in the UTC time zone.

Returns:

  • (String)


1290
1291
1292
1293
1294
1295
# File 'lib/aws-sdk-fsx/types.rb', line 1290

class UpdateFileSystemWindowsConfiguration < Struct.new(
  :weekly_maintenance_start_time,
  :daily_automatic_backup_start_time,
  :automatic_backup_retention_days)
  include Aws::Structure
end