1
2
3
4
5
6
7
8
9
10
11
12
13
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteObject`](crate::operation::delete_object::builders::DeleteObjectFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`backup_job_id(impl Into<String>)`](crate::operation::delete_object::builders::DeleteObjectFluentBuilder::backup_job_id) / [`set_backup_job_id(Option<String>)`](crate::operation::delete_object::builders::DeleteObjectFluentBuilder::set_backup_job_id): Backup job Id for the in-progress backup.
    ///   - [`object_name(impl Into<String>)`](crate::operation::delete_object::builders::DeleteObjectFluentBuilder::object_name) / [`set_object_name(Option<String>)`](crate::operation::delete_object::builders::DeleteObjectFluentBuilder::set_object_name): The name of the Object.
    /// - On success, responds with [`DeleteObjectOutput`](crate::operation::delete_object::DeleteObjectOutput)
    /// - On failure, responds with [`SdkError<DeleteObjectError>`](crate::operation::delete_object::DeleteObjectError)
    pub fn delete_object(&self) -> crate::operation::delete_object::builders::DeleteObjectFluentBuilder {
        crate::operation::delete_object::builders::DeleteObjectFluentBuilder::new(self.handle.clone())
    }
}