aws_sdk_securityhub/client/delete_finding_aggregator.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 [`DeleteFindingAggregator`](crate::operation::delete_finding_aggregator::builders::DeleteFindingAggregatorFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`finding_aggregator_arn(impl Into<String>)`](crate::operation::delete_finding_aggregator::builders::DeleteFindingAggregatorFluentBuilder::finding_aggregator_arn) / [`set_finding_aggregator_arn(Option<String>)`](crate::operation::delete_finding_aggregator::builders::DeleteFindingAggregatorFluentBuilder::set_finding_aggregator_arn):<br>required: **true**<br><p>The ARN of the finding aggregator to delete. To obtain the ARN, use <code>ListFindingAggregators</code>.</p><br>
7 /// - On success, responds with [`DeleteFindingAggregatorOutput`](crate::operation::delete_finding_aggregator::DeleteFindingAggregatorOutput)
8 /// - On failure, responds with [`SdkError<DeleteFindingAggregatorError>`](crate::operation::delete_finding_aggregator::DeleteFindingAggregatorError)
9 pub fn delete_finding_aggregator(&self) -> crate::operation::delete_finding_aggregator::builders::DeleteFindingAggregatorFluentBuilder {
10 crate::operation::delete_finding_aggregator::builders::DeleteFindingAggregatorFluentBuilder::new(self.handle.clone())
11 }
12}