Struct aws_sdk_databasemigration::operation::create_replication_config::CreateReplicationConfigInput
source · #[non_exhaustive]pub struct CreateReplicationConfigInput {
pub replication_config_identifier: Option<String>,
pub source_endpoint_arn: Option<String>,
pub target_endpoint_arn: Option<String>,
pub compute_config: Option<ComputeConfig>,
pub replication_type: Option<MigrationTypeValue>,
pub table_mappings: Option<String>,
pub replication_settings: Option<String>,
pub supplemental_settings: Option<String>,
pub resource_identifier: Option<String>,
pub tags: Option<Vec<Tag>>,
}
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_identifier: Option<String>
A unique identifier that you want to use to create a ReplicationConfigArn
that is returned as part of the output from this action. You can then pass this output ReplicationConfigArn
as the value of the ReplicationConfigArn
option for other actions to identify both DMS Serverless replications and replication configurations that you want those actions to operate on. For some actions, you can also use either this unique identifier or a corresponding ARN in action filters to identify the specific replication and replication configuration to operate on.
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.
compute_config: Option<ComputeConfig>
Configuration parameters for provisioning an DMS Serverless replication.
replication_type: Option<MigrationTypeValue>
The type of DMS Serverless replication to provision using this replication configuration.
Possible values:
-
"full-load"
-
"cdc"
-
"full-load-and-cdc"
table_mappings: Option<String>
JSON table mappings for DMS Serverless replications that are provisioned using this replication configuration. For more information, see Specifying table selection and transformations rules using JSON.
replication_settings: Option<String>
Optional JSON settings for DMS Serverless replications that are provisioned using this replication configuration. For example, see Change processing tuning settings.
supplemental_settings: Option<String>
Optional JSON settings for specifying supplemental data. For more information, see Specifying supplemental data for task settings.
resource_identifier: Option<String>
Optional unique value or name that you set for a given resource that can be used to construct an Amazon Resource Name (ARN) for that resource. For more information, see Fine-grained access control using resource names and tags.
One or more optional tags associated with resources used by the DMS Serverless replication. For more information, see Tagging resources in Database Migration Service.
Implementations§
source§impl CreateReplicationConfigInput
impl CreateReplicationConfigInput
sourcepub fn replication_config_identifier(&self) -> Option<&str>
pub fn replication_config_identifier(&self) -> Option<&str>
A unique identifier that you want to use to create a ReplicationConfigArn
that is returned as part of the output from this action. You can then pass this output ReplicationConfigArn
as the value of the ReplicationConfigArn
option for other actions to identify both DMS Serverless replications and replication configurations that you want those actions to operate on. For some actions, you can also use either this unique identifier or a corresponding ARN in action filters to identify the specific replication and replication configuration to operate on.
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 compute_config(&self) -> Option<&ComputeConfig>
pub fn compute_config(&self) -> Option<&ComputeConfig>
Configuration parameters for provisioning an DMS Serverless replication.
sourcepub fn replication_type(&self) -> Option<&MigrationTypeValue>
pub fn replication_type(&self) -> Option<&MigrationTypeValue>
The type of DMS Serverless replication to provision using this replication configuration.
Possible values:
-
"full-load"
-
"cdc"
-
"full-load-and-cdc"
sourcepub fn table_mappings(&self) -> Option<&str>
pub fn table_mappings(&self) -> Option<&str>
JSON table mappings for DMS Serverless replications that are provisioned using this replication configuration. For more information, see Specifying table selection and transformations rules using JSON.
sourcepub fn replication_settings(&self) -> Option<&str>
pub fn replication_settings(&self) -> Option<&str>
Optional JSON settings for DMS Serverless replications that are provisioned using this replication configuration. For example, see Change processing tuning settings.
sourcepub fn supplemental_settings(&self) -> Option<&str>
pub fn supplemental_settings(&self) -> Option<&str>
Optional JSON settings for specifying supplemental data. For more information, see Specifying supplemental data for task settings.
sourcepub fn resource_identifier(&self) -> Option<&str>
pub fn resource_identifier(&self) -> Option<&str>
Optional unique value or name that you set for a given resource that can be used to construct an Amazon Resource Name (ARN) for that resource. For more information, see Fine-grained access control using resource names and tags.
One or more optional tags associated with resources used by the DMS Serverless replication. For more information, see Tagging resources in Database Migration Service.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none()
.
source§impl CreateReplicationConfigInput
impl CreateReplicationConfigInput
sourcepub fn builder() -> CreateReplicationConfigInputBuilder
pub fn builder() -> CreateReplicationConfigInputBuilder
Creates a new builder-style object to manufacture CreateReplicationConfigInput
.
Trait Implementations§
source§impl Clone for CreateReplicationConfigInput
impl Clone for CreateReplicationConfigInput
source§fn clone(&self) -> CreateReplicationConfigInput
fn clone(&self) -> CreateReplicationConfigInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateReplicationConfigInput
impl Debug for CreateReplicationConfigInput
source§impl PartialEq for CreateReplicationConfigInput
impl PartialEq for CreateReplicationConfigInput
source§fn eq(&self, other: &CreateReplicationConfigInput) -> bool
fn eq(&self, other: &CreateReplicationConfigInput) -> bool
self
and other
values to be equal, and is used
by ==
.