Class: Aws::StorageGateway::Types::DeleteFileShareInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::StorageGateway::Types::DeleteFileShareInput
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-storagegateway/types.rb
Overview
DeleteFileShareInput
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#file_share_arn ⇒ String
The Amazon Resource Name (ARN) of the file share to be deleted.
-
#force_delete ⇒ Boolean
If this value is set to ‘true`, the operation deletes a file share immediately and aborts all data uploads to Amazon Web Services.
Instance Attribute Details
#file_share_arn ⇒ String
The Amazon Resource Name (ARN) of the file share to be deleted.
2353 2354 2355 2356 2357 2358 |
# File 'lib/aws-sdk-storagegateway/types.rb', line 2353 class DeleteFileShareInput < Struct.new( :file_share_arn, :force_delete) SENSITIVE = [] include Aws::Structure end |
#force_delete ⇒ Boolean
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`
2353 2354 2355 2356 2357 2358 |
# File 'lib/aws-sdk-storagegateway/types.rb', line 2353 class DeleteFileShareInput < Struct.new( :file_share_arn, :force_delete) SENSITIVE = [] include Aws::Structure end |