aws_sdk_iotfleetwise/client/
delete_model_manifest.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 [`DeleteModelManifest`](crate::operation::delete_model_manifest::builders::DeleteModelManifestFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`name(impl Into<String>)`](crate::operation::delete_model_manifest::builders::DeleteModelManifestFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::delete_model_manifest::builders::DeleteModelManifestFluentBuilder::set_name):<br>required: **true**<br><p>The name of the model manifest to delete.</p><br>
7    /// - On success, responds with [`DeleteModelManifestOutput`](crate::operation::delete_model_manifest::DeleteModelManifestOutput) with field(s):
8    ///   - [`name(String)`](crate::operation::delete_model_manifest::DeleteModelManifestOutput::name): <p>The name of the deleted model manifest.</p>
9    ///   - [`arn(String)`](crate::operation::delete_model_manifest::DeleteModelManifestOutput::arn): <p>The Amazon Resource Name (ARN) of the deleted model manifest.</p>
10    /// - On failure, responds with [`SdkError<DeleteModelManifestError>`](crate::operation::delete_model_manifest::DeleteModelManifestError)
11    pub fn delete_model_manifest(&self) -> crate::operation::delete_model_manifest::builders::DeleteModelManifestFluentBuilder {
12        crate::operation::delete_model_manifest::builders::DeleteModelManifestFluentBuilder::new(self.handle.clone())
13    }
14}