Struct aws_sdk_elasticache::operation::start_migration::builders::StartMigrationFluentBuilder
source · pub struct StartMigrationFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to StartMigration
.
Start the migration of data.
Implementations§
source§impl StartMigrationFluentBuilder
impl StartMigrationFluentBuilder
sourcepub fn as_input(&self) -> &StartMigrationInputBuilder
pub fn as_input(&self) -> &StartMigrationInputBuilder
Access the StartMigration as a reference.
sourcepub async fn send(
self
) -> Result<StartMigrationOutput, SdkError<StartMigrationError, HttpResponse>>
pub async fn send( self ) -> Result<StartMigrationOutput, SdkError<StartMigrationError, 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<StartMigrationOutput, StartMigrationError, Self>
pub fn customize( self ) -> CustomizableOperation<StartMigrationOutput, StartMigrationError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn replication_group_id(self, input: impl Into<String>) -> Self
pub fn replication_group_id(self, input: impl Into<String>) -> Self
The ID of the replication group to which data should be migrated.
sourcepub fn set_replication_group_id(self, input: Option<String>) -> Self
pub fn set_replication_group_id(self, input: Option<String>) -> Self
The ID of the replication group to which data should be migrated.
sourcepub fn get_replication_group_id(&self) -> &Option<String>
pub fn get_replication_group_id(&self) -> &Option<String>
The ID of the replication group to which data should be migrated.
sourcepub fn customer_node_endpoint_list(self, input: CustomerNodeEndpoint) -> Self
pub fn customer_node_endpoint_list(self, input: CustomerNodeEndpoint) -> Self
Appends an item to CustomerNodeEndpointList
.
To override the contents of this collection use set_customer_node_endpoint_list
.
List of endpoints from which data should be migrated. For Redis (cluster mode disabled), list should have only one element.
sourcepub fn set_customer_node_endpoint_list(
self,
input: Option<Vec<CustomerNodeEndpoint>>
) -> Self
pub fn set_customer_node_endpoint_list( self, input: Option<Vec<CustomerNodeEndpoint>> ) -> Self
List of endpoints from which data should be migrated. For Redis (cluster mode disabled), list should have only one element.
sourcepub fn get_customer_node_endpoint_list(
&self
) -> &Option<Vec<CustomerNodeEndpoint>>
pub fn get_customer_node_endpoint_list( &self ) -> &Option<Vec<CustomerNodeEndpoint>>
List of endpoints from which data should be migrated. For Redis (cluster mode disabled), list should have only one element.
Trait Implementations§
source§impl Clone for StartMigrationFluentBuilder
impl Clone for StartMigrationFluentBuilder
source§fn clone(&self) -> StartMigrationFluentBuilder
fn clone(&self) -> StartMigrationFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more