Class: Aws::S3Files::Types::DeleteFileSystemRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3Files::Types::DeleteFileSystemRequest
- Defined in:
- gems/aws-sdk-s3files/lib/aws-sdk-s3files/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#file_system_id ⇒ String
The ID or Amazon Resource Name (ARN) of the S3 File System to delete.
-
#force_delete ⇒ Boolean
If true, allows deletion of a file system that contains data pending export to S3.
Instance Attribute Details
#file_system_id ⇒ String
The ID or Amazon Resource Name (ARN) of the S3 File System to delete.
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_delete ⇒ Boolean
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.
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 |