aws_sdk_bedrock/client/
delete_imported_model.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`DeleteImportedModel`](crate::operation::delete_imported_model::builders::DeleteImportedModelFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`model_identifier(impl Into<String>)`](crate::operation::delete_imported_model::builders::DeleteImportedModelFluentBuilder::model_identifier) / [`set_model_identifier(Option<String>)`](crate::operation::delete_imported_model::builders::DeleteImportedModelFluentBuilder::set_model_identifier):<br>required: **true**<br><p>Name of the imported model to delete.</p><br>
7    /// - On success, responds with [`DeleteImportedModelOutput`](crate::operation::delete_imported_model::DeleteImportedModelOutput)
8    /// - On failure, responds with [`SdkError<DeleteImportedModelError>`](crate::operation::delete_imported_model::DeleteImportedModelError)
9    pub fn delete_imported_model(&self) -> crate::operation::delete_imported_model::builders::DeleteImportedModelFluentBuilder {
10        crate::operation::delete_imported_model::builders::DeleteImportedModelFluentBuilder::new(self.handle.clone())
11    }
12}