aws_sdk_cloudwatch/client/
delete_dashboards.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 [`DeleteDashboards`](crate::operation::delete_dashboards::builders::DeleteDashboardsFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`dashboard_names(impl Into<String>)`](crate::operation::delete_dashboards::builders::DeleteDashboardsFluentBuilder::dashboard_names) / [`set_dashboard_names(Option<Vec::<String>>)`](crate::operation::delete_dashboards::builders::DeleteDashboardsFluentBuilder::set_dashboard_names):<br>required: **true**<br><p>The dashboards to be deleted. This parameter is required.</p><br>
7    /// - On success, responds with [`DeleteDashboardsOutput`](crate::operation::delete_dashboards::DeleteDashboardsOutput)
8    /// - On failure, responds with [`SdkError<DeleteDashboardsError>`](crate::operation::delete_dashboards::DeleteDashboardsError)
9    pub fn delete_dashboards(&self) -> crate::operation::delete_dashboards::builders::DeleteDashboardsFluentBuilder {
10        crate::operation::delete_dashboards::builders::DeleteDashboardsFluentBuilder::new(self.handle.clone())
11    }
12}