aws_sdk_aiops/client/delete_investigation_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 [`DeleteInvestigationGroup`](crate::operation::delete_investigation_group::builders::DeleteInvestigationGroupFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`identifier(impl Into<String>)`](crate::operation::delete_investigation_group::builders::DeleteInvestigationGroupFluentBuilder::identifier) / [`set_identifier(Option<String>)`](crate::operation::delete_investigation_group::builders::DeleteInvestigationGroupFluentBuilder::set_identifier):<br>required: **true**<br><p>Specify either the name or the ARN of the investigation group that you want to delete.</p><br>
7    /// - On success, responds with [`DeleteInvestigationGroupOutput`](crate::operation::delete_investigation_group::DeleteInvestigationGroupOutput)
8    /// - On failure, responds with [`SdkError<DeleteInvestigationGroupError>`](crate::operation::delete_investigation_group::DeleteInvestigationGroupError)
9    pub fn delete_investigation_group(&self) -> crate::operation::delete_investigation_group::builders::DeleteInvestigationGroupFluentBuilder {
10        crate::operation::delete_investigation_group::builders::DeleteInvestigationGroupFluentBuilder::new(self.handle.clone())
11    }
12}