pub struct DeleteBackupFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to DeleteBackup.
Deletes an Amazon FSx backup. After deletion, the backup no longer exists, and its data is gone.
The DeleteBackup call returns instantly. The backup won't show up in later DescribeBackups calls.
The data in a deleted backup is also deleted and can't be recovered by any means.
Implementations§
source§impl DeleteBackupFluentBuilder
impl DeleteBackupFluentBuilder
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<DeleteBackup, AwsResponseRetryClassifier>, SdkError<DeleteBackupError>>
pub async fn customize( self ) -> Result<CustomizableOperation<DeleteBackup, AwsResponseRetryClassifier>, SdkError<DeleteBackupError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<DeleteBackupOutput, SdkError<DeleteBackupError>>
pub async fn send( self ) -> Result<DeleteBackupOutput, SdkError<DeleteBackupError>>
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn backup_id(self, input: impl Into<String>) -> Self
pub fn backup_id(self, input: impl Into<String>) -> Self
The ID of the backup that you want to delete.
sourcepub fn set_backup_id(self, input: Option<String>) -> Self
pub fn set_backup_id(self, input: Option<String>) -> Self
The ID of the backup that you want to delete.
sourcepub fn client_request_token(self, input: impl Into<String>) -> Self
pub fn client_request_token(self, input: impl Into<String>) -> Self
A string of up to 63 ASCII characters that Amazon FSx uses to ensure idempotent deletion. This parameter is automatically filled on your behalf when using the CLI or SDK.
sourcepub fn set_client_request_token(self, input: Option<String>) -> Self
pub fn set_client_request_token(self, input: Option<String>) -> Self
A string of up to 63 ASCII characters that Amazon FSx uses to ensure idempotent deletion. This parameter is automatically filled on your behalf when using the CLI or SDK.
Trait Implementations§
source§impl Clone for DeleteBackupFluentBuilder
impl Clone for DeleteBackupFluentBuilder
source§fn clone(&self) -> DeleteBackupFluentBuilder
fn clone(&self) -> DeleteBackupFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more