1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeletePreset`](crate::operation::delete_preset::builders::DeletePresetFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`id(impl Into<String>)`](crate::operation::delete_preset::builders::DeletePresetFluentBuilder::id) / [`set_id(Option<String>)`](crate::operation::delete_preset::builders::DeletePresetFluentBuilder::set_id): <p>The identifier of the preset for which you want to get detailed information.</p>
    /// - On success, responds with [`DeletePresetOutput`](crate::operation::delete_preset::DeletePresetOutput)
    /// - On failure, responds with [`SdkError<DeletePresetError>`](crate::operation::delete_preset::DeletePresetError)
    pub fn delete_preset(
        &self,
    ) -> crate::operation::delete_preset::builders::DeletePresetFluentBuilder {
        crate::operation::delete_preset::builders::DeletePresetFluentBuilder::new(
            self.handle.clone(),
        )
    }
}