Struct aws_sdk_dax::client::fluent_builders::UpdateParameterGroup
source · pub struct UpdateParameterGroup { /* private fields */ }
Expand description
Fluent builder constructing a request to UpdateParameterGroup
.
Modifies the parameters of a parameter group. You can modify up to 20 parameters in a single request by submitting a list parameter name and value pairs.
Implementations§
source§impl UpdateParameterGroup
impl UpdateParameterGroup
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<UpdateParameterGroup, AwsResponseRetryClassifier>, SdkError<UpdateParameterGroupError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<UpdateParameterGroup, AwsResponseRetryClassifier>, SdkError<UpdateParameterGroupError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<UpdateParameterGroupOutput, SdkError<UpdateParameterGroupError>>
pub async fn send(
self
) -> Result<UpdateParameterGroupOutput, SdkError<UpdateParameterGroupError>>
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 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.
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.
sourcepub fn parameter_name_values(self, input: ParameterNameValue) -> Self
pub fn parameter_name_values(self, input: ParameterNameValue) -> Self
Appends an item to ParameterNameValues
.
To override the contents of this collection use set_parameter_name_values
.
An array of name-value pairs for the parameters in the group. Each element in the array represents a single parameter.
record-ttl-millis
and query-ttl-millis
are the only supported parameter names. For more details, see Configuring TTL Settings.
sourcepub fn set_parameter_name_values(
self,
input: Option<Vec<ParameterNameValue>>
) -> Self
pub fn set_parameter_name_values(
self,
input: Option<Vec<ParameterNameValue>>
) -> Self
An array of name-value pairs for the parameters in the group. Each element in the array represents a single parameter.
record-ttl-millis
and query-ttl-millis
are the only supported parameter names. For more details, see Configuring TTL Settings.
Trait Implementations§
source§impl Clone for UpdateParameterGroup
impl Clone for UpdateParameterGroup
source§fn clone(&self) -> UpdateParameterGroup
fn clone(&self) -> UpdateParameterGroup
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more