Module Values.ReplicationConfigSource

This object provides configuration information about a serverless replication.

Sourcetype nonrec t = {
  1. replicationConfigIdentifier : String_.t option;
    (*

    The identifier for the ReplicationConfig associated with the replication.

    *)
  2. replicationConfigArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of this DMS Serverless replication configuration.

    *)
  3. sourceEndpointArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the source endpoint for this DMS serverless replication configuration.

    *)
  4. targetEndpointArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the target endpoint for this DMS serverless replication configuration.

    *)
  5. replicationType : MigrationTypeValue.t option;
    (*

    The type of the replication.

    *)
  6. computeConfig : ComputeConfig.t option;
    (*

    Configuration parameters for provisioning an DMS serverless replication.

    *)
  7. replicationSettings : String_.t option;
    (*

    Configuration parameters for an DMS serverless replication.

    *)
  8. supplementalSettings : String_.t option;
    (*

    Additional parameters for an DMS serverless replication.

    *)
  9. tableMappings : String_.t option;
    (*

    Table mappings specified in the replication.

    *)
  10. replicationConfigCreateTime : TStamp.t option;
    (*

    The time the serverless replication config was created.

    *)
  11. replicationConfigUpdateTime : TStamp.t option;
    (*

    The time the serverless replication config was updated.

    *)
  12. isReadOnly : BooleanOptional.t option;
    (*

    Indicates whether the replication configuration is read-only. When set to true, this replication configuration is managed by DMS as part of a zero-ETL integration and cannot be modified or deleted directly. You can only modify or delete read-only replication configurations through their associated zero-ETL integration.

    *)
}
Sourceval make : ?replicationConfigIdentifier:??? -> ?replicationConfigArn:??? -> ?sourceEndpointArn:??? -> ?targetEndpointArn:??? -> ?replicationType:??? -> ?computeConfig:??? -> ?replicationSettings:??? -> ?supplementalSettings:??? -> ?tableMappings:??? -> ?replicationConfigCreateTime:??? -> ?replicationConfigUpdateTime:??? -> ?isReadOnly:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BooleanOptional.t | `Enum of string | `String of String_.t | `Structure of (string * [> `Boolean of BooleanOptional.t | `Integer of IntegerOptional.t | `List of [> `String of String_.t ] list | `String of String_.t ]) list | `Timestamp of TStamp.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t