Struct aws_sdk_databasemigration::operation::modify_replication_config::ModifyReplicationConfigInput
source · #[non_exhaustive]pub struct ModifyReplicationConfigInput {
pub replication_config_arn: Option<String>,
pub replication_config_identifier: Option<String>,
pub replication_type: Option<MigrationTypeValue>,
pub table_mappings: Option<String>,
pub replication_settings: Option<String>,
pub supplemental_settings: Option<String>,
pub compute_config: Option<ComputeConfig>,
pub source_endpoint_arn: Option<String>,
pub target_endpoint_arn: Option<String>,
}
Expand description
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_arn: Option<String>
The Amazon Resource Name of the replication to modify.
replication_config_identifier: Option<String>
The new replication config to apply to the replication.
replication_type: Option<MigrationTypeValue>
The type of replication.
table_mappings: Option<String>
Table mappings specified in the replication.
replication_settings: Option<String>
The settings for the replication.
supplemental_settings: Option<String>
Additional settings for the replication.
compute_config: Option<ComputeConfig>
Configuration parameters for provisioning an DMS Serverless replication.
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.
Implementations§
source§impl ModifyReplicationConfigInput
impl ModifyReplicationConfigInput
sourcepub fn replication_config_arn(&self) -> Option<&str>
pub fn replication_config_arn(&self) -> Option<&str>
The Amazon Resource Name of the replication to modify.
sourcepub fn replication_config_identifier(&self) -> Option<&str>
pub fn replication_config_identifier(&self) -> Option<&str>
The new replication config to apply to the replication.
sourcepub fn replication_type(&self) -> Option<&MigrationTypeValue>
pub fn replication_type(&self) -> Option<&MigrationTypeValue>
The type of replication.
sourcepub fn table_mappings(&self) -> Option<&str>
pub fn table_mappings(&self) -> Option<&str>
Table mappings specified in the replication.
sourcepub fn replication_settings(&self) -> Option<&str>
pub fn replication_settings(&self) -> Option<&str>
The settings for the replication.
sourcepub fn supplemental_settings(&self) -> Option<&str>
pub fn supplemental_settings(&self) -> Option<&str>
Additional settings for 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 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.
source§impl ModifyReplicationConfigInput
impl ModifyReplicationConfigInput
sourcepub fn builder() -> ModifyReplicationConfigInputBuilder
pub fn builder() -> ModifyReplicationConfigInputBuilder
Creates a new builder-style object to manufacture ModifyReplicationConfigInput
.
Trait Implementations§
source§impl Clone for ModifyReplicationConfigInput
impl Clone for ModifyReplicationConfigInput
source§fn clone(&self) -> ModifyReplicationConfigInput
fn clone(&self) -> ModifyReplicationConfigInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ModifyReplicationConfigInput
impl Debug for ModifyReplicationConfigInput
source§impl PartialEq for ModifyReplicationConfigInput
impl PartialEq for ModifyReplicationConfigInput
source§fn eq(&self, other: &ModifyReplicationConfigInput) -> bool
fn eq(&self, other: &ModifyReplicationConfigInput) -> bool
self
and other
values to be equal, and is used
by ==
.