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 [`DeleteModel`](crate::operation::delete_model::builders::DeleteModelFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`api_id(impl Into<String>)`](crate::operation::delete_model::builders::DeleteModelFluentBuilder::api_id) / [`set_api_id(Option<String>)`](crate::operation::delete_model::builders::DeleteModelFluentBuilder::set_api_id):<br>required: **true**<br><p>The API identifier.</p><br>
    ///   - [`model_id(impl Into<String>)`](crate::operation::delete_model::builders::DeleteModelFluentBuilder::model_id) / [`set_model_id(Option<String>)`](crate::operation::delete_model::builders::DeleteModelFluentBuilder::set_model_id):<br>required: **true**<br><p>The model ID.</p><br>
    /// - On success, responds with [`DeleteModelOutput`](crate::operation::delete_model::DeleteModelOutput)
    /// - On failure, responds with [`SdkError<DeleteModelError>`](crate::operation::delete_model::DeleteModelError)
    pub fn delete_model(&self) -> crate::operation::delete_model::builders::DeleteModelFluentBuilder {
        crate::operation::delete_model::builders::DeleteModelFluentBuilder::new(self.handle.clone())
    }
}