Class: Aws::StorageGateway::Types::DeleteFileShareInput

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

Overview

DeleteFileShareInput

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#file_share_arnString

The Amazon Resource Name (ARN) of the file share to be deleted.

Returns:

  • (String)


2521
2522
2523
2524
2525
2526
# File 'lib/aws-sdk-storagegateway/types.rb', line 2521

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

#force_deleteBoolean

If this value is set to ‘true`, the operation deletes a file share immediately and aborts all data uploads to Amazon Web Services. Otherwise, the file share is not deleted until all data is uploaded to Amazon Web Services. This process aborts the data upload process, and the file share enters the `FORCE_DELETING` status.

Valid Values: ‘true` | `false`

Returns:

  • (Boolean)


2521
2522
2523
2524
2525
2526
# File 'lib/aws-sdk-storagegateway/types.rb', line 2521

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