Struct aws_sdk_redshift::operation::modify_cluster_parameter_group::builders::ModifyClusterParameterGroupFluentBuilder
source · pub struct ModifyClusterParameterGroupFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to ModifyClusterParameterGroup
.
Modifies the parameters of a parameter group. For the parameters parameter, it can't contain ASCII characters.
For more information about parameters and parameter groups, go to Amazon Redshift Parameter Groups in the Amazon Redshift Cluster Management Guide.
Implementations§
source§impl ModifyClusterParameterGroupFluentBuilder
impl ModifyClusterParameterGroupFluentBuilder
sourcepub fn as_input(&self) -> &ModifyClusterParameterGroupInputBuilder
pub fn as_input(&self) -> &ModifyClusterParameterGroupInputBuilder
Access the ModifyClusterParameterGroup as a reference.
sourcepub async fn send(
self
) -> Result<ModifyClusterParameterGroupOutput, SdkError<ModifyClusterParameterGroupError, HttpResponse>>
pub async fn send( self ) -> Result<ModifyClusterParameterGroupOutput, SdkError<ModifyClusterParameterGroupError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<ModifyClusterParameterGroupOutput, ModifyClusterParameterGroupError>, SdkError<ModifyClusterParameterGroupError>>
pub async fn customize( self ) -> Result<CustomizableOperation<ModifyClusterParameterGroupOutput, ModifyClusterParameterGroupError>, SdkError<ModifyClusterParameterGroupError>>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn parameter_group_name(self, input: impl Into<String>) -> Self
pub fn parameter_group_name(self, input: impl Into<String>) -> Self
The name of the parameter group to be modified.
sourcepub fn set_parameter_group_name(self, input: Option<String>) -> Self
pub fn set_parameter_group_name(self, input: Option<String>) -> Self
The name of the parameter group to be modified.
sourcepub fn get_parameter_group_name(&self) -> &Option<String>
pub fn get_parameter_group_name(&self) -> &Option<String>
The name of the parameter group to be modified.
sourcepub fn parameters(self, input: Parameter) -> Self
pub fn parameters(self, input: Parameter) -> Self
Appends an item to Parameters
.
To override the contents of this collection use set_parameters
.
An array of parameters to be modified. A maximum of 20 parameters can be modified in a single request.
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.
For the workload management (WLM) configuration, you must supply all the name-value pairs in the wlm_json_configuration parameter.
sourcepub fn set_parameters(self, input: Option<Vec<Parameter>>) -> Self
pub fn set_parameters(self, input: Option<Vec<Parameter>>) -> Self
An array of parameters to be modified. A maximum of 20 parameters can be modified in a single request.
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.
For the workload management (WLM) configuration, you must supply all the name-value pairs in the wlm_json_configuration parameter.
sourcepub fn get_parameters(&self) -> &Option<Vec<Parameter>>
pub fn get_parameters(&self) -> &Option<Vec<Parameter>>
An array of parameters to be modified. A maximum of 20 parameters can be modified in a single request.
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.
For the workload management (WLM) configuration, you must supply all the name-value pairs in the wlm_json_configuration parameter.
Trait Implementations§
source§impl Clone for ModifyClusterParameterGroupFluentBuilder
impl Clone for ModifyClusterParameterGroupFluentBuilder
source§fn clone(&self) -> ModifyClusterParameterGroupFluentBuilder
fn clone(&self) -> ModifyClusterParameterGroupFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more