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 [`ModifyClusterParameterGroup`](crate::operation::modify_cluster_parameter_group::builders::ModifyClusterParameterGroupFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`parameter_group_name(impl Into<String>)`](crate::operation::modify_cluster_parameter_group::builders::ModifyClusterParameterGroupFluentBuilder::parameter_group_name) / [`set_parameter_group_name(Option<String>)`](crate::operation::modify_cluster_parameter_group::builders::ModifyClusterParameterGroupFluentBuilder::set_parameter_group_name):<br>required: **true**<br><p>The name of the parameter group to be modified.</p><br>
    ///   - [`parameters(Parameter)`](crate::operation::modify_cluster_parameter_group::builders::ModifyClusterParameterGroupFluentBuilder::parameters) / [`set_parameters(Option<Vec::<Parameter>>)`](crate::operation::modify_cluster_parameter_group::builders::ModifyClusterParameterGroupFluentBuilder::set_parameters):<br>required: **true**<br><p>An array of parameters to be modified. A maximum of 20 parameters can be modified in a single request.</p>  <p>For each parameter to be modified, you must supply at least the parameter name and parameter value; other name-value pairs of the parameter are optional.</p>  <p>For the workload management (WLM) configuration, you must supply all the name-value pairs in the wlm_json_configuration parameter.</p><br>
    /// - On success, responds with [`ModifyClusterParameterGroupOutput`](crate::operation::modify_cluster_parameter_group::ModifyClusterParameterGroupOutput) with field(s):
    ///   - [`parameter_group_name(Option<String>)`](crate::operation::modify_cluster_parameter_group::ModifyClusterParameterGroupOutput::parameter_group_name): <p>The name of the cluster parameter group.</p>
    ///   - [`parameter_group_status(Option<String>)`](crate::operation::modify_cluster_parameter_group::ModifyClusterParameterGroupOutput::parameter_group_status): <p>The status of the parameter group. For example, if you made a change to a parameter group name-value pair, then the change could be pending a reboot of an associated cluster.</p>
    /// - On failure, responds with [`SdkError<ModifyClusterParameterGroupError>`](crate::operation::modify_cluster_parameter_group::ModifyClusterParameterGroupError)
    pub fn modify_cluster_parameter_group(
        &self,
    ) -> crate::operation::modify_cluster_parameter_group::builders::ModifyClusterParameterGroupFluentBuilder {
        crate::operation::modify_cluster_parameter_group::builders::ModifyClusterParameterGroupFluentBuilder::new(self.handle.clone())
    }
}