#[non_exhaustive]pub struct ReplicationConfig {
pub replication_config_identifier: Option<String>,
pub replication_config_arn: Option<String>,
pub source_endpoint_arn: Option<String>,
pub target_endpoint_arn: Option<String>,
pub replication_type: Option<MigrationTypeValue>,
pub compute_config: Option<ComputeConfig>,
pub replication_settings: Option<String>,
pub supplemental_settings: Option<String>,
pub table_mappings: Option<String>,
pub replication_config_create_time: Option<DateTime>,
pub replication_config_update_time: Option<DateTime>,
}
Expand description
This object provides configuration information about a serverless replication.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.replication_config_identifier: Option<String>
The identifier for the ReplicationConfig
associated with the replication.
replication_config_arn: Option<String>
The Amazon Resource Name (ARN) of this DMS Serverless replication configuration.
source_endpoint_arn: Option<String>
The Amazon Resource Name (ARN) of the source endpoint for this DMS serverless replication configuration.
target_endpoint_arn: Option<String>
The Amazon Resource Name (ARN) of the target endpoint for this DMS serverless replication configuration.
replication_type: Option<MigrationTypeValue>
The type of the replication.
compute_config: Option<ComputeConfig>
Configuration parameters for provisioning an DMS serverless replication.
replication_settings: Option<String>
Configuration parameters for an DMS serverless replication.
supplemental_settings: Option<String>
Additional parameters for an DMS serverless replication.
table_mappings: Option<String>
Table mappings specified in the replication.
replication_config_create_time: Option<DateTime>
The time the serverless replication config was created.
replication_config_update_time: Option<DateTime>
The time the serverless replication config was updated.
Implementations§
source§impl ReplicationConfig
impl ReplicationConfig
sourcepub fn replication_config_identifier(&self) -> Option<&str>
pub fn replication_config_identifier(&self) -> Option<&str>
The identifier for the ReplicationConfig
associated with the replication.
sourcepub fn replication_config_arn(&self) -> Option<&str>
pub fn replication_config_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of this DMS Serverless replication configuration.
sourcepub fn source_endpoint_arn(&self) -> Option<&str>
pub fn source_endpoint_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the source endpoint for this DMS serverless replication configuration.
sourcepub fn target_endpoint_arn(&self) -> Option<&str>
pub fn target_endpoint_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the target endpoint for this DMS serverless replication configuration.
sourcepub fn replication_type(&self) -> Option<&MigrationTypeValue>
pub fn replication_type(&self) -> Option<&MigrationTypeValue>
The type of the replication.
sourcepub fn compute_config(&self) -> Option<&ComputeConfig>
pub fn compute_config(&self) -> Option<&ComputeConfig>
Configuration parameters for provisioning an DMS serverless replication.
sourcepub fn replication_settings(&self) -> Option<&str>
pub fn replication_settings(&self) -> Option<&str>
Configuration parameters for an DMS serverless replication.
sourcepub fn supplemental_settings(&self) -> Option<&str>
pub fn supplemental_settings(&self) -> Option<&str>
Additional parameters for an DMS serverless replication.
sourcepub fn table_mappings(&self) -> Option<&str>
pub fn table_mappings(&self) -> Option<&str>
Table mappings specified in the replication.
sourcepub fn replication_config_create_time(&self) -> Option<&DateTime>
pub fn replication_config_create_time(&self) -> Option<&DateTime>
The time the serverless replication config was created.
sourcepub fn replication_config_update_time(&self) -> Option<&DateTime>
pub fn replication_config_update_time(&self) -> Option<&DateTime>
The time the serverless replication config was updated.
source§impl ReplicationConfig
impl ReplicationConfig
sourcepub fn builder() -> ReplicationConfigBuilder
pub fn builder() -> ReplicationConfigBuilder
Creates a new builder-style object to manufacture ReplicationConfig
.
Trait Implementations§
source§impl Clone for ReplicationConfig
impl Clone for ReplicationConfig
source§fn clone(&self) -> ReplicationConfig
fn clone(&self) -> ReplicationConfig
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ReplicationConfig
impl Debug for ReplicationConfig
source§impl PartialEq for ReplicationConfig
impl PartialEq for ReplicationConfig
impl StructuralPartialEq for ReplicationConfig
Auto Trait Implementations§
impl Freeze for ReplicationConfig
impl RefUnwindSafe for ReplicationConfig
impl Send for ReplicationConfig
impl Sync for ReplicationConfig
impl Unpin for ReplicationConfig
impl UnwindSafe for ReplicationConfig
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more