1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteParameterGroup`](crate::operation::delete_parameter_group::builders::DeleteParameterGroupFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`parameter_group_name(impl ::std::convert::Into<String>)`](crate::operation::delete_parameter_group::builders::DeleteParameterGroupFluentBuilder::parameter_group_name) / [`set_parameter_group_name(Option<String>)`](crate::operation::delete_parameter_group::builders::DeleteParameterGroupFluentBuilder::set_parameter_group_name): <p>The name of the parameter group to delete.</p>
    /// - On success, responds with [`DeleteParameterGroupOutput`](crate::operation::delete_parameter_group::DeleteParameterGroupOutput) with field(s):
    ///   - [`parameter_group(Option<ParameterGroup>)`](crate::operation::delete_parameter_group::DeleteParameterGroupOutput::parameter_group): <p>The parameter group that has been deleted.</p>
    /// - On failure, responds with [`SdkError<DeleteParameterGroupError>`](crate::operation::delete_parameter_group::DeleteParameterGroupError)
    pub fn delete_parameter_group(
        &self,
    ) -> crate::operation::delete_parameter_group::builders::DeleteParameterGroupFluentBuilder {
        crate::operation::delete_parameter_group::builders::DeleteParameterGroupFluentBuilder::new(
            self.handle.clone(),
        )
    }
}