1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetFindingAggregator`](crate::operation::get_finding_aggregator::builders::GetFindingAggregatorFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`finding_aggregator_arn(impl Into<String>)`](crate::operation::get_finding_aggregator::builders::GetFindingAggregatorFluentBuilder::finding_aggregator_arn) / [`set_finding_aggregator_arn(Option<String>)`](crate::operation::get_finding_aggregator::builders::GetFindingAggregatorFluentBuilder::set_finding_aggregator_arn):<br>required: **true**<br><p>The ARN of the finding aggregator to return details for. To obtain the ARN, use <code>ListFindingAggregators</code>.</p><br>
    /// - On success, responds with [`GetFindingAggregatorOutput`](crate::operation::get_finding_aggregator::GetFindingAggregatorOutput) with field(s):
    ///   - [`finding_aggregator_arn(Option<String>)`](crate::operation::get_finding_aggregator::GetFindingAggregatorOutput::finding_aggregator_arn): <p>The ARN of the finding aggregator.</p>
    ///   - [`finding_aggregation_region(Option<String>)`](crate::operation::get_finding_aggregator::GetFindingAggregatorOutput::finding_aggregation_region): <p>The aggregation Region.</p>
    ///   - [`region_linking_mode(Option<String>)`](crate::operation::get_finding_aggregator::GetFindingAggregatorOutput::region_linking_mode): <p>Indicates whether to link all Regions, all Regions except for a list of excluded Regions, or a list of included Regions.</p>
    ///   - [`regions(Option<Vec::<String>>)`](crate::operation::get_finding_aggregator::GetFindingAggregatorOutput::regions): <p>The list of excluded Regions or included Regions.</p>
    /// - On failure, responds with [`SdkError<GetFindingAggregatorError>`](crate::operation::get_finding_aggregator::GetFindingAggregatorError)
    pub fn get_finding_aggregator(&self) -> crate::operation::get_finding_aggregator::builders::GetFindingAggregatorFluentBuilder {
        crate::operation::get_finding_aggregator::builders::GetFindingAggregatorFluentBuilder::new(self.handle.clone())
    }
}