Class: Aws::S3Files::Types::DeleteFileSystemRequest

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-s3files/lib/aws-sdk-s3files/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#file_system_idString

The ID or Amazon Resource Name (ARN) of the S3 File System to delete.

Returns:

  • (String)


491
492
493
494
495
496
# File 'gems/aws-sdk-s3files/lib/aws-sdk-s3files/types.rb', line 491

class DeleteFileSystemRequest < Struct.new(
  :file_system_id,
  :force_delete)
  SENSITIVE = []
  include Aws::Structure
end

#force_deleteBoolean

If true, allows deletion of a file system that contains data pending export to S3. If false (the default), the deletion will fail if there is data that has not yet been exported to the S3 bucket. Use this parameter with caution as it may result in data loss.

Returns:

  • (Boolean)


491
492
493
494
495
496
# File 'gems/aws-sdk-s3files/lib/aws-sdk-s3files/types.rb', line 491

class DeleteFileSystemRequest < Struct.new(
  :file_system_id,
  :force_delete)
  SENSITIVE = []
  include Aws::Structure
end