aws_sdk_dax/client/
delete_parameter_group.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
// 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 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):<br>required: **true**<br><p>The name of the parameter group to delete.</p><br>
    /// - On success, responds with [`DeleteParameterGroupOutput`](crate::operation::delete_parameter_group::DeleteParameterGroupOutput) with field(s):
    ///   - [`deletion_message(Option<String>)`](crate::operation::delete_parameter_group::DeleteParameterGroupOutput::deletion_message): <p>A user-specified message for this action (i.e., a reason for deleting the parameter group).</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())
    }
}