Class: Aws::FSx::Types::DeleteFileSystemWindowsConfiguration

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 DeleteFileSystemWindowsConfiguration data as a hash:

{
  skip_final_backup: false,
  final_backup_tags: [
    {
      key: "TagKey",
      value: "TagValue",
    },
  ],
}

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

Instance Attribute Summary collapse

Instance Attribute Details

#final_backup_tagsArray<Types::Tag>

A set of tags for your final backup.

Returns:



678
679
680
681
682
# File 'lib/aws-sdk-fsx/types.rb', line 678

class DeleteFileSystemWindowsConfiguration < Struct.new(
  :skip_final_backup,
  :final_backup_tags)
  include Aws::Structure
end

#skip_final_backupBoolean

By default, Amazon FSx for Windows takes a final backup on your behalf when the ‘DeleteFileSystem` operation is invoked. Doing this helps protect you from data loss, and we highly recommend taking the final backup. If you want to skip this backup, use this flag to do so.

Returns:

  • (Boolean)


678
679
680
681
682
# File 'lib/aws-sdk-fsx/types.rb', line 678

class DeleteFileSystemWindowsConfiguration < Struct.new(
  :skip_final_backup,
  :final_backup_tags)
  include Aws::Structure
end