aws_sdk_config/client/
delete_configuration_aggregator.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteConfigurationAggregator`](crate::operation::delete_configuration_aggregator::builders::DeleteConfigurationAggregatorFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`configuration_aggregator_name(impl Into<String>)`](crate::operation::delete_configuration_aggregator::builders::DeleteConfigurationAggregatorFluentBuilder::configuration_aggregator_name) / [`set_configuration_aggregator_name(Option<String>)`](crate::operation::delete_configuration_aggregator::builders::DeleteConfigurationAggregatorFluentBuilder::set_configuration_aggregator_name):<br>required: **true**<br><p>The name of the configuration aggregator.</p><br>
    /// - On success, responds with [`DeleteConfigurationAggregatorOutput`](crate::operation::delete_configuration_aggregator::DeleteConfigurationAggregatorOutput)
    /// - On failure, responds with [`SdkError<DeleteConfigurationAggregatorError>`](crate::operation::delete_configuration_aggregator::DeleteConfigurationAggregatorError)
    pub fn delete_configuration_aggregator(
        &self,
    ) -> crate::operation::delete_configuration_aggregator::builders::DeleteConfigurationAggregatorFluentBuilder {
        crate::operation::delete_configuration_aggregator::builders::DeleteConfigurationAggregatorFluentBuilder::new(self.handle.clone())
    }
}