1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteParameters`](crate::operation::delete_parameters::builders::DeleteParametersFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`names(Vec<String>)`](crate::operation::delete_parameters::builders::DeleteParametersFluentBuilder::names) / [`set_names(Option<Vec<String>>)`](crate::operation::delete_parameters::builders::DeleteParametersFluentBuilder::set_names): <p>The names of the parameters to delete. After deleting a parameter, wait for at least 30 seconds to create a parameter with the same name.</p>
    /// - On success, responds with [`DeleteParametersOutput`](crate::operation::delete_parameters::DeleteParametersOutput) with field(s):
    ///   - [`deleted_parameters(Option<Vec<String>>)`](crate::operation::delete_parameters::DeleteParametersOutput::deleted_parameters): <p>The names of the deleted parameters.</p>
    ///   - [`invalid_parameters(Option<Vec<String>>)`](crate::operation::delete_parameters::DeleteParametersOutput::invalid_parameters): <p>The names of parameters that weren't deleted because the parameters aren't valid.</p>
    /// - On failure, responds with [`SdkError<DeleteParametersError>`](crate::operation::delete_parameters::DeleteParametersError)
    pub fn delete_parameters(
        &self,
    ) -> crate::operation::delete_parameters::builders::DeleteParametersFluentBuilder {
        crate::operation::delete_parameters::builders::DeleteParametersFluentBuilder::new(
            self.handle.clone(),
        )
    }
}