Struct aws_sdk_rds::client::fluent_builders::RebootDBCluster
source · [−]pub struct RebootDBCluster { /* private fields */ }Expand description
Fluent builder constructing a request to RebootDBCluster.
You might need to reboot your DB cluster, usually for maintenance reasons. For example, if you make certain modifications, or if you change the DB cluster parameter group associated with the DB cluster, reboot the DB cluster for the changes to take effect.
Rebooting a DB cluster restarts the database engine service. Rebooting a DB cluster results in a momentary outage, during which the DB cluster status is set to rebooting.
Use this operation only for a non-Aurora Multi-AZ DB cluster.
For more information on Multi-AZ DB clusters, see Multi-AZ deployments with two readable standby DB instances in the Amazon RDS User Guide.
Implementations
sourceimpl RebootDBCluster
impl RebootDBCluster
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<RebootDBCluster, AwsResponseRetryClassifier>, SdkError<RebootDBClusterError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<RebootDBCluster, AwsResponseRetryClassifier>, SdkError<RebootDBClusterError>>
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<RebootDbClusterOutput, SdkError<RebootDBClusterError>>
pub async fn send(
self
) -> Result<RebootDbClusterOutput, SdkError<RebootDBClusterError>>
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 db_cluster_identifier(self, input: impl Into<String>) -> Self
pub fn db_cluster_identifier(self, input: impl Into<String>) -> Self
The DB cluster identifier. This parameter is stored as a lowercase string.
Constraints:
-
Must match the identifier of an existing DBCluster.
sourcepub fn set_db_cluster_identifier(self, input: Option<String>) -> Self
pub fn set_db_cluster_identifier(self, input: Option<String>) -> Self
The DB cluster identifier. This parameter is stored as a lowercase string.
Constraints:
-
Must match the identifier of an existing DBCluster.
Trait Implementations
sourceimpl Clone for RebootDBCluster
impl Clone for RebootDBCluster
sourcefn clone(&self) -> RebootDBCluster
fn clone(&self) -> RebootDBCluster
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more