aws_sdk_fms/client/
delete_apps_list.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 [`DeleteAppsList`](crate::operation::delete_apps_list::builders::DeleteAppsListFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`list_id(impl Into<String>)`](crate::operation::delete_apps_list::builders::DeleteAppsListFluentBuilder::list_id) / [`set_list_id(Option<String>)`](crate::operation::delete_apps_list::builders::DeleteAppsListFluentBuilder::set_list_id):<br>required: **true**<br><p>The ID of the applications list that you want to delete. You can retrieve this ID from <code>PutAppsList</code>, <code>ListAppsLists</code>, and <code>GetAppsList</code>.</p><br>
7    /// - On success, responds with [`DeleteAppsListOutput`](crate::operation::delete_apps_list::DeleteAppsListOutput)
8    /// - On failure, responds with [`SdkError<DeleteAppsListError>`](crate::operation::delete_apps_list::DeleteAppsListError)
9    pub fn delete_apps_list(&self) -> crate::operation::delete_apps_list::builders::DeleteAppsListFluentBuilder {
10        crate::operation::delete_apps_list::builders::DeleteAppsListFluentBuilder::new(self.handle.clone())
11    }
12}