Struct aws_sdk_timestreaminfluxdb::operation::create_db_parameter_group::builders::CreateDbParameterGroupFluentBuilder
source · pub struct CreateDbParameterGroupFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to CreateDbParameterGroup
.
Creates a new Timestream for InfluxDB DB parameter group to associate with DB instances.
Implementations§
source§impl CreateDbParameterGroupFluentBuilder
impl CreateDbParameterGroupFluentBuilder
sourcepub fn as_input(&self) -> &CreateDbParameterGroupInputBuilder
pub fn as_input(&self) -> &CreateDbParameterGroupInputBuilder
Access the CreateDbParameterGroup as a reference.
sourcepub async fn send(
self
) -> Result<CreateDbParameterGroupOutput, SdkError<CreateDbParameterGroupError, HttpResponse>>
pub async fn send( self ) -> Result<CreateDbParameterGroupOutput, SdkError<CreateDbParameterGroupError, 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<CreateDbParameterGroupOutput, CreateDbParameterGroupError, Self>
pub fn customize( self ) -> CustomizableOperation<CreateDbParameterGroupOutput, CreateDbParameterGroupError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
The name of the DB parameter group. The name must be unique per customer and per region.
sourcepub fn set_name(self, input: Option<String>) -> Self
pub fn set_name(self, input: Option<String>) -> Self
The name of the DB parameter group. The name must be unique per customer and per region.
sourcepub fn get_name(&self) -> &Option<String>
pub fn get_name(&self) -> &Option<String>
The name of the DB parameter group. The name must be unique per customer and per region.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
A description of the DB parameter group.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
A description of the DB parameter group.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
A description of the DB parameter group.
sourcepub fn parameters(self, input: Parameters) -> Self
pub fn parameters(self, input: Parameters) -> Self
A list of the parameters that comprise the DB parameter group.
sourcepub fn set_parameters(self, input: Option<Parameters>) -> Self
pub fn set_parameters(self, input: Option<Parameters>) -> Self
A list of the parameters that comprise the DB parameter group.
sourcepub fn get_parameters(&self) -> &Option<Parameters>
pub fn get_parameters(&self) -> &Option<Parameters>
A list of the parameters that comprise the DB parameter group.
Adds a key-value pair to tags
.
To override the contents of this collection use set_tags
.
A list of key-value pairs to associate with the DB parameter group.
A list of key-value pairs to associate with the DB parameter group.
A list of key-value pairs to associate with the DB parameter group.
Trait Implementations§
source§impl Clone for CreateDbParameterGroupFluentBuilder
impl Clone for CreateDbParameterGroupFluentBuilder
source§fn clone(&self) -> CreateDbParameterGroupFluentBuilder
fn clone(&self) -> CreateDbParameterGroupFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more