// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DeleteAssetModel`](crate::operation::delete_asset_model::builders::DeleteAssetModelFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`asset_model_id(impl Into<String>)`](crate::operation::delete_asset_model::builders::DeleteAssetModelFluentBuilder::asset_model_id) / [`set_asset_model_id(Option<String>)`](crate::operation::delete_asset_model::builders::DeleteAssetModelFluentBuilder::set_asset_model_id):<br>required: **true**<br><p>The ID of the asset model to delete. This can be either the actual ID in UUID format, or else <code>externalId:</code> followed by the external ID, if it has one. For more information, see <a href="https://docs.aws.amazon.com/iot-sitewise/latest/userguide/object-ids.html#external-id-references">Referencing objects with external IDs</a> in the <i>IoT SiteWise User Guide</i>.</p><br>
/// - [`client_token(impl Into<String>)`](crate::operation::delete_asset_model::builders::DeleteAssetModelFluentBuilder::client_token) / [`set_client_token(Option<String>)`](crate::operation::delete_asset_model::builders::DeleteAssetModelFluentBuilder::set_client_token):<br>required: **false**<br><p>A unique case-sensitive identifier that you can provide to ensure the idempotency of the request. Don't reuse this client token if a new idempotent request is required.</p><br>
/// - On success, responds with [`DeleteAssetModelOutput`](crate::operation::delete_asset_model::DeleteAssetModelOutput) with field(s):
/// - [`asset_model_status(Option<AssetModelStatus>)`](crate::operation::delete_asset_model::DeleteAssetModelOutput::asset_model_status): <p>The status of the asset model, which contains a state (<code>DELETING</code> after successfully calling this operation) and any error message.</p>
/// - On failure, responds with [`SdkError<DeleteAssetModelError>`](crate::operation::delete_asset_model::DeleteAssetModelError)
pub fn delete_asset_model(&self) -> crate::operation::delete_asset_model::builders::DeleteAssetModelFluentBuilder {
crate::operation::delete_asset_model::builders::DeleteAssetModelFluentBuilder::new(self.handle.clone())
}
}