Struct aws_sdk_memorydb::operation::create_parameter_group::builders::CreateParameterGroupFluentBuilder
source · pub struct CreateParameterGroupFluentBuilder { /* 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 CreateParameterGroupFluentBuilder
impl CreateParameterGroupFluentBuilder
sourcepub fn as_input(&self) -> &CreateParameterGroupInputBuilder
pub fn as_input(&self) -> &CreateParameterGroupInputBuilder
Access the CreateParameterGroup as a reference.
sourcepub async fn send(
self
) -> Result<CreateParameterGroupOutput, SdkError<CreateParameterGroupError, HttpResponse>>
pub async fn send( self ) -> Result<CreateParameterGroupOutput, SdkError<CreateParameterGroupError, 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 fn customize(
self
) -> CustomizableOperation<CreateParameterGroupOutput, CreateParameterGroupError, Self>
pub fn customize( self ) -> CustomizableOperation<CreateParameterGroupOutput, CreateParameterGroupError, Self>
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.
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 get_parameter_group_name(&self) -> &Option<String>
pub fn get_parameter_group_name(&self) -> &Option<String>
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 get_family(&self) -> &Option<String>
pub fn get_family(&self) -> &Option<String>
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.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
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.
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 CreateParameterGroupFluentBuilder
impl Clone for CreateParameterGroupFluentBuilder
source§fn clone(&self) -> CreateParameterGroupFluentBuilder
fn clone(&self) -> CreateParameterGroupFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more