aws_sdk_dax/client/create_parameter_group.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`CreateParameterGroup`](crate::operation::create_parameter_group::builders::CreateParameterGroupFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`parameter_group_name(impl Into<String>)`](crate::operation::create_parameter_group::builders::CreateParameterGroupFluentBuilder::parameter_group_name) / [`set_parameter_group_name(Option<String>)`](crate::operation::create_parameter_group::builders::CreateParameterGroupFluentBuilder::set_parameter_group_name):<br>required: **true**<br><p>The name of the parameter group to apply to all of the clusters in this replication group.</p><br>
7 /// - [`description(impl Into<String>)`](crate::operation::create_parameter_group::builders::CreateParameterGroupFluentBuilder::description) / [`set_description(Option<String>)`](crate::operation::create_parameter_group::builders::CreateParameterGroupFluentBuilder::set_description):<br>required: **false**<br><p>A description of the parameter group.</p><br>
8 /// - On success, responds with [`CreateParameterGroupOutput`](crate::operation::create_parameter_group::CreateParameterGroupOutput) with field(s):
9 /// - [`parameter_group(Option<ParameterGroup>)`](crate::operation::create_parameter_group::CreateParameterGroupOutput::parameter_group): <p>Represents the output of a <i>CreateParameterGroup</i> action.</p>
10 /// - On failure, responds with [`SdkError<CreateParameterGroupError>`](crate::operation::create_parameter_group::CreateParameterGroupError)
11 pub fn create_parameter_group(&self) -> crate::operation::create_parameter_group::builders::CreateParameterGroupFluentBuilder {
12 crate::operation::create_parameter_group::builders::CreateParameterGroupFluentBuilder::new(self.handle.clone())
13 }
14}