Struct aws_sdk_timestreaminfluxdb::operation::update_db_instance::builders::UpdateDbInstanceFluentBuilder
source · pub struct UpdateDbInstanceFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to UpdateDbInstance
.
Updates a Timestream for InfluxDB DB instance.
Implementations§
source§impl UpdateDbInstanceFluentBuilder
impl UpdateDbInstanceFluentBuilder
sourcepub fn as_input(&self) -> &UpdateDbInstanceInputBuilder
pub fn as_input(&self) -> &UpdateDbInstanceInputBuilder
Access the UpdateDbInstance as a reference.
sourcepub async fn send(
self
) -> Result<UpdateDbInstanceOutput, SdkError<UpdateDbInstanceError, HttpResponse>>
pub async fn send( self ) -> Result<UpdateDbInstanceOutput, SdkError<UpdateDbInstanceError, 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<UpdateDbInstanceOutput, UpdateDbInstanceError, Self>
pub fn customize( self ) -> CustomizableOperation<UpdateDbInstanceOutput, UpdateDbInstanceError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn identifier(self, input: impl Into<String>) -> Self
pub fn identifier(self, input: impl Into<String>) -> Self
The id of the DB instance.
sourcepub fn set_identifier(self, input: Option<String>) -> Self
pub fn set_identifier(self, input: Option<String>) -> Self
The id of the DB instance.
sourcepub fn get_identifier(&self) -> &Option<String>
pub fn get_identifier(&self) -> &Option<String>
The id of the DB instance.
sourcepub fn log_delivery_configuration(self, input: LogDeliveryConfiguration) -> Self
pub fn log_delivery_configuration(self, input: LogDeliveryConfiguration) -> Self
Configuration for sending InfluxDB engine logs to send to specified S3 bucket.
sourcepub fn set_log_delivery_configuration(
self,
input: Option<LogDeliveryConfiguration>
) -> Self
pub fn set_log_delivery_configuration( self, input: Option<LogDeliveryConfiguration> ) -> Self
Configuration for sending InfluxDB engine logs to send to specified S3 bucket.
sourcepub fn get_log_delivery_configuration(
&self
) -> &Option<LogDeliveryConfiguration>
pub fn get_log_delivery_configuration( &self ) -> &Option<LogDeliveryConfiguration>
Configuration for sending InfluxDB engine logs to send to specified S3 bucket.
sourcepub fn db_parameter_group_identifier(self, input: impl Into<String>) -> Self
pub fn db_parameter_group_identifier(self, input: impl Into<String>) -> Self
The id of the DB parameter group to assign to your DB instance. DB parameter groups specify how the database is configured. For example, DB parameter groups can specify the limit for query concurrency.
sourcepub fn set_db_parameter_group_identifier(self, input: Option<String>) -> Self
pub fn set_db_parameter_group_identifier(self, input: Option<String>) -> Self
The id of the DB parameter group to assign to your DB instance. DB parameter groups specify how the database is configured. For example, DB parameter groups can specify the limit for query concurrency.
sourcepub fn get_db_parameter_group_identifier(&self) -> &Option<String>
pub fn get_db_parameter_group_identifier(&self) -> &Option<String>
The id of the DB parameter group to assign to your DB instance. DB parameter groups specify how the database is configured. For example, DB parameter groups can specify the limit for query concurrency.
Trait Implementations§
source§impl Clone for UpdateDbInstanceFluentBuilder
impl Clone for UpdateDbInstanceFluentBuilder
source§fn clone(&self) -> UpdateDbInstanceFluentBuilder
fn clone(&self) -> UpdateDbInstanceFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more