Class: Aws::FSx::Types::DeleteBackupRequest

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

Overview

Note:

When making an API call, you may pass DeleteBackupRequest data as a hash:

{
  backup_id: "BackupId", # required
  client_request_token: "ClientRequestToken",
}

The request object for ‘DeleteBackup` operation.

Instance Attribute Summary collapse

Instance Attribute Details

#backup_idString

The ID of the backup you want to delete.

Returns:

  • (String)


553
554
555
556
557
# File 'lib/aws-sdk-fsx/types.rb', line 553

class DeleteBackupRequest < Struct.new(
  :backup_id,
  :client_request_token)
  include Aws::Structure
end

#client_request_tokenString

(Optional) A string of up to 64 ASCII characters that Amazon FSx uses to ensure idempotent deletion. This is automatically filled on your behalf when using the AWS CLI or SDK.

**A suitable default value is auto-generated.** You should normally not need to pass this option.

Returns:

  • (String)


553
554
555
556
557
# File 'lib/aws-sdk-fsx/types.rb', line 553

class DeleteBackupRequest < Struct.new(
  :backup_id,
  :client_request_token)
  include Aws::Structure
end