pub struct CreateParameterGroup { /* private fields */ }
Expand description
Fluent builder constructing a request to CreateParameterGroup
.
Creates a new MemoryDB parameter group. A parameter group is a collection of parameters and their values that are applied to all of the nodes in any cluster. For more information, see Configuring engine parameters using parameter groups.
Implementations§
source§impl CreateParameterGroup
impl CreateParameterGroup
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<CreateParameterGroup, AwsResponseRetryClassifier>, SdkError<CreateParameterGroupError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<CreateParameterGroup, AwsResponseRetryClassifier>, SdkError<CreateParameterGroupError>>
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<CreateParameterGroupOutput, SdkError<CreateParameterGroupError>>
pub async fn send(
self
) -> Result<CreateParameterGroupOutput, SdkError<CreateParameterGroupError>>
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 family(self, input: impl Into<String>) -> Self
pub fn family(self, input: impl Into<String>) -> Self
The name of the parameter group family that the parameter group can be used with.
sourcepub fn set_family(self, input: Option<String>) -> Self
pub fn set_family(self, input: Option<String>) -> Self
The name of the parameter group family that the parameter group can be used with.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
An optional description of the parameter group.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
An optional description of the parameter group.
Appends an item to Tags
.
To override the contents of this collection use set_tags
.
A list of tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a tag value, although null is accepted.
A list of tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a tag value, although null is accepted.
Trait Implementations§
source§impl Clone for CreateParameterGroup
impl Clone for CreateParameterGroup
source§fn clone(&self) -> CreateParameterGroup
fn clone(&self) -> CreateParameterGroup
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more