Class: Aws::FSx::Types::DeleteBackupRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::FSx::Types::DeleteBackupRequest
- Defined in:
- gems/aws-sdk-fsx/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 the DeleteBackup
operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#backup_id ⇒ String
The ID of the backup that you want to delete.
-
#client_request_token ⇒ String
A string of up to 64 ASCII characters that Amazon FSx uses to ensure idempotent deletion.
Instance Attribute Details
#backup_id ⇒ String
The ID of the backup that you want to delete.
3804 3805 3806 3807 3808 3809 |
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 3804 class DeleteBackupRequest < Struct.new( :backup_id, :client_request_token) SENSITIVE = [] include Aws::Structure end |
#client_request_token ⇒ String
A string of up to 64 ASCII characters that Amazon FSx uses to ensure idempotent deletion. This parameter is automatically filled on your behalf when using the CLI or SDK.
A suitable default value is auto-generated. You should normally not need to pass this option.
3804 3805 3806 3807 3808 3809 |
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 3804 class DeleteBackupRequest < Struct.new( :backup_id, :client_request_token) SENSITIVE = [] include Aws::Structure end |