pub struct RebootReplicationInstance { /* private fields */ }
Expand description
Fluent builder constructing a request to RebootReplicationInstance
.
Reboots a replication instance. Rebooting results in a momentary outage, until the replication instance becomes available again.
Implementations§
source§impl RebootReplicationInstance
impl RebootReplicationInstance
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<RebootReplicationInstance, AwsResponseRetryClassifier>, SdkError<RebootReplicationInstanceError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<RebootReplicationInstance, AwsResponseRetryClassifier>, SdkError<RebootReplicationInstanceError>>
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<RebootReplicationInstanceOutput, SdkError<RebootReplicationInstanceError>>
pub async fn send(
self
) -> Result<RebootReplicationInstanceOutput, SdkError<RebootReplicationInstanceError>>
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 replication_instance_arn(self, input: impl Into<String>) -> Self
pub fn replication_instance_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the replication instance.
sourcepub fn set_replication_instance_arn(self, input: Option<String>) -> Self
pub fn set_replication_instance_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the replication instance.
sourcepub fn force_failover(self, input: bool) -> Self
pub fn force_failover(self, input: bool) -> Self
If this parameter is true
, the reboot is conducted through a Multi-AZ failover. If the instance isn't configured for Multi-AZ, then you can't specify true
. ( --force-planned-failover
and --force-failover
can't both be set to true
.)
sourcepub fn set_force_failover(self, input: Option<bool>) -> Self
pub fn set_force_failover(self, input: Option<bool>) -> Self
If this parameter is true
, the reboot is conducted through a Multi-AZ failover. If the instance isn't configured for Multi-AZ, then you can't specify true
. ( --force-planned-failover
and --force-failover
can't both be set to true
.)
sourcepub fn force_planned_failover(self, input: bool) -> Self
pub fn force_planned_failover(self, input: bool) -> Self
If this parameter is true
, the reboot is conducted through a planned Multi-AZ failover where resources are released and cleaned up prior to conducting the failover. If the instance isn''t configured for Multi-AZ, then you can't specify true
. ( --force-planned-failover
and --force-failover
can't both be set to true
.)
sourcepub fn set_force_planned_failover(self, input: Option<bool>) -> Self
pub fn set_force_planned_failover(self, input: Option<bool>) -> Self
If this parameter is true
, the reboot is conducted through a planned Multi-AZ failover where resources are released and cleaned up prior to conducting the failover. If the instance isn''t configured for Multi-AZ, then you can't specify true
. ( --force-planned-failover
and --force-failover
can't both be set to true
.)
Trait Implementations§
source§impl Clone for RebootReplicationInstance
impl Clone for RebootReplicationInstance
source§fn clone(&self) -> RebootReplicationInstance
fn clone(&self) -> RebootReplicationInstance
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more