Struct rusoto_storagegateway::DeleteFileShareInput[][src]

pub struct DeleteFileShareInput {
    pub file_share_arn: String,
    pub force_delete: Option<bool>,
}

DeleteFileShareInput

Fields

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

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

Trait Implementations

impl Default for DeleteFileShareInput
[src]

Returns the "default value" for a type. Read more

impl Debug for DeleteFileShareInput
[src]

Formats the value using the given formatter. Read more

impl Clone for DeleteFileShareInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DeleteFileShareInput
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations