Interface ICfnReplicationConfigMixinProps
Properties for CfnReplicationConfigPropsMixin.
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.DMS
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface ICfnReplicationConfigMixinProps
Syntax (vb)
Public Interface ICfnReplicationConfigMixinProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.DMS;
var replicationSettings;
var supplementalSettings;
var tableMappings;
var cfnReplicationConfigMixinProps = new CfnReplicationConfigMixinProps {
ComputeConfig = new ComputeConfigProperty {
AvailabilityZone = "availabilityZone",
DnsNameServers = "dnsNameServers",
KmsKeyId = "kmsKeyId",
MaxCapacityUnits = 123,
MinCapacityUnits = 123,
MultiAz = false,
PreferredMaintenanceWindow = "preferredMaintenanceWindow",
ReplicationSubnetGroupId = "replicationSubnetGroupId",
VpcSecurityGroupIds = new [] { "vpcSecurityGroupIds" }
},
ReplicationConfigIdentifier = "replicationConfigIdentifier",
ReplicationSettings = replicationSettings,
ReplicationType = "replicationType",
ResourceIdentifier = "resourceIdentifier",
SourceEndpointArn = "sourceEndpointArn",
SupplementalSettings = supplementalSettings,
TableMappings = tableMappings,
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} },
TargetEndpointArn = "targetEndpointArn"
};
Synopsis
Properties
| ComputeConfig | Configuration parameters for provisioning an AWS DMS Serverless replication. |
| ReplicationConfigIdentifier | A unique identifier that you want to use to create a |
| ReplicationSettings | Optional JSON settings for AWS DMS Serverless replications that are provisioned using this replication configuration. |
| ReplicationType | The type of AWS DMS Serverless replication to provision using this replication configuration. |
| ResourceIdentifier | 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. |
| SourceEndpointArn | The Amazon Resource Name (ARN) of the source endpoint for this AWS DMS Serverless replication configuration. |
| SupplementalSettings | Optional JSON settings for specifying supplemental data. |
| TableMappings | JSON table mappings for AWS DMS Serverless replications that are provisioned using this replication configuration. |
| Tags | One or more optional tags associated with resources used by the AWS DMS Serverless replication. |
| TargetEndpointArn | The Amazon Resource Name (ARN) of the target endpoint for this AWS DMS serverless replication configuration. |
Properties
ComputeConfig
Configuration parameters for provisioning an AWS DMS Serverless replication.
object? ComputeConfig { get; }
Property Value
Remarks
ReplicationConfigIdentifier
A unique identifier that you want to use to create a ReplicationConfigArn that is returned as part of the output from this action.
string? ReplicationConfigIdentifier { get; }
Property Value
Remarks
You can then pass this output ReplicationConfigArn as the value of the ReplicationConfigArn option for other actions to identify both AWS 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.
ReplicationSettings
Optional JSON settings for AWS DMS Serverless replications that are provisioned using this replication configuration.
object? ReplicationSettings { get; }
Property Value
Remarks
ReplicationType
The type of AWS DMS Serverless replication to provision using this replication configuration.
string? ReplicationType { get; }
Property Value
Remarks
ResourceIdentifier
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.
string? ResourceIdentifier { get; }
Property Value
Remarks
SourceEndpointArn
The Amazon Resource Name (ARN) of the source endpoint for this AWS DMS Serverless replication configuration.
string? SourceEndpointArn { get; }
Property Value
Remarks
SupplementalSettings
Optional JSON settings for specifying supplemental data.
object? SupplementalSettings { get; }
Property Value
Remarks
TableMappings
JSON table mappings for AWS DMS Serverless replications that are provisioned using this replication configuration.
object? TableMappings { get; }
Property Value
Remarks
Tags
One or more optional tags associated with resources used by the AWS DMS Serverless replication.
ICfnTag[]? Tags { get; }
Property Value
ICfnTag[]
Remarks
TargetEndpointArn
The Amazon Resource Name (ARN) of the target endpoint for this AWS DMS serverless replication configuration.
string? TargetEndpointArn { get; }