aws_sdk_s3control/client/delete_storage_lens_group.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 [`DeleteStorageLensGroup`](crate::operation::delete_storage_lens_group::builders::DeleteStorageLensGroupFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`name(impl Into<String>)`](crate::operation::delete_storage_lens_group::builders::DeleteStorageLensGroupFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::delete_storage_lens_group::builders::DeleteStorageLensGroupFluentBuilder::set_name):<br>required: **true**<br><p>The name of the Storage Lens group that you're trying to delete.</p><br>
7 /// - [`account_id(impl Into<String>)`](crate::operation::delete_storage_lens_group::builders::DeleteStorageLensGroupFluentBuilder::account_id) / [`set_account_id(Option<String>)`](crate::operation::delete_storage_lens_group::builders::DeleteStorageLensGroupFluentBuilder::set_account_id):<br>required: **true**<br><p>The Amazon Web Services account ID used to create the Storage Lens group that you're trying to delete.</p><br>
8 /// - On success, responds with [`DeleteStorageLensGroupOutput`](crate::operation::delete_storage_lens_group::DeleteStorageLensGroupOutput)
9 /// - On failure, responds with [`SdkError<DeleteStorageLensGroupError>`](crate::operation::delete_storage_lens_group::DeleteStorageLensGroupError)
10 pub fn delete_storage_lens_group(&self) -> crate::operation::delete_storage_lens_group::builders::DeleteStorageLensGroupFluentBuilder {
11 crate::operation::delete_storage_lens_group::builders::DeleteStorageLensGroupFluentBuilder::new(self.handle.clone())
12 }
13}