Struct cfn::aws::dms::ReplicationTaskProperties [] [src]

pub struct ReplicationTaskProperties {
    pub cdc_start_time: Option<Value<f64>>,
    pub migration_type: Value<String>,
    pub replication_instance_arn: Value<String>,
    pub replication_task_identifier: Option<Value<String>>,
    pub replication_task_settings: Option<Value<String>>,
    pub source_endpoint_arn: Value<String>,
    pub table_mappings: Value<String>,
    pub tags: Option<ValueList<Tag>>,
    pub target_endpoint_arn: Value<String>,
}

Properties for the ReplicationTask resource.

Fields

Property CdcStartTime.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property MigrationType.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property ReplicationInstanceArn.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property ReplicationTaskIdentifier.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property ReplicationTaskSettings.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property SourceEndpointArn.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property TableMappings.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property Tags.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property TargetEndpointArn.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Trait Implementations

impl Debug for ReplicationTaskProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for ReplicationTaskProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

impl<'de> Deserialize<'de> for ReplicationTaskProperties
[src]

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<ReplicationTaskProperties> for ReplicationTask
[src]

[src]

Performs the conversion.

Auto Trait Implementations