pub struct DeleteBackupFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to DeleteBackup.
Deletes a specified AWS CloudHSM backup. A backup can be restored up to 7 days after the DeleteBackup request is made. For more information on restoring a backup, see RestoreBackup.
Implementations§
source§impl DeleteBackupFluentBuilder
impl DeleteBackupFluentBuilder
sourcepub fn as_input(&self) -> &DeleteBackupInputBuilder
pub fn as_input(&self) -> &DeleteBackupInputBuilder
Access the DeleteBackup as a reference.
sourcepub async fn send(
self
) -> Result<DeleteBackupOutput, SdkError<DeleteBackupError, HttpResponse>>
pub async fn send( self ) -> Result<DeleteBackupOutput, SdkError<DeleteBackupError, HttpResponse>>
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 customize(
self
) -> CustomizableOperation<DeleteBackupOutput, DeleteBackupError, Self>
pub fn customize( self ) -> CustomizableOperation<DeleteBackupOutput, DeleteBackupError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
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 to be deleted. To find the ID of a backup, use the DescribeBackups operation.
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 to be deleted. To find the ID of a backup, use the DescribeBackups operation.
sourcepub fn get_backup_id(&self) -> &Option<String>
pub fn get_backup_id(&self) -> &Option<String>
The ID of the backup to be deleted. To find the ID of a backup, use the DescribeBackups operation.
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