Struct aws_sdk_databasemigration::operation::reboot_replication_instance::builders::RebootReplicationInstanceFluentBuilder
source · pub struct RebootReplicationInstanceFluentBuilder { /* 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 RebootReplicationInstanceFluentBuilder
impl RebootReplicationInstanceFluentBuilder
sourcepub fn as_input(&self) -> &RebootReplicationInstanceInputBuilder
pub fn as_input(&self) -> &RebootReplicationInstanceInputBuilder
Access the RebootReplicationInstance as a reference.
sourcepub async fn send(
self
) -> Result<RebootReplicationInstanceOutput, SdkError<RebootReplicationInstanceError, HttpResponse>>
pub async fn send( self ) -> Result<RebootReplicationInstanceOutput, SdkError<RebootReplicationInstanceError, 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<RebootReplicationInstanceOutput, RebootReplicationInstanceError, Self>
pub fn customize( self ) -> CustomizableOperation<RebootReplicationInstanceOutput, RebootReplicationInstanceError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
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 get_replication_instance_arn(&self) -> &Option<String>
pub fn get_replication_instance_arn(&self) -> &Option<String>
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 get_force_failover(&self) -> &Option<bool>
pub fn get_force_failover(&self) -> &Option<bool>
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
.)
sourcepub fn get_force_planned_failover(&self) -> &Option<bool>
pub fn get_force_planned_failover(&self) -> &Option<bool>
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 RebootReplicationInstanceFluentBuilder
impl Clone for RebootReplicationInstanceFluentBuilder
source§fn clone(&self) -> RebootReplicationInstanceFluentBuilder
fn clone(&self) -> RebootReplicationInstanceFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more