Module Values.DataMigrationSource

This object provides information about a DMS data migration.

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

    The user-friendly name for the data migration.

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

    The Amazon Resource Name (ARN) that identifies this replication.

    *)
  3. dataMigrationCreateTime : Iso8601DateTime.t option;
    (*

    The UTC time when DMS created the data migration.

    *)
  4. dataMigrationStartTime : Iso8601DateTime.t option;
    (*

    The UTC time when DMS started the data migration.

    *)
  5. dataMigrationEndTime : Iso8601DateTime.t option;
    (*

    The UTC time when data migration ended.

    *)
  6. serviceAccessRoleArn : String_.t option;
    (*

    The IAM role that the data migration uses to access Amazon Web Services resources.

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

    The Amazon Resource Name (ARN) of the data migration's associated migration project.

    *)
  8. dataMigrationType : MigrationTypeValue.t option;
    (*

    Specifies whether the data migration is full-load only, change data capture (CDC) only, or full-load and CDC.

    *)
  9. dataMigrationSettings : DataMigrationSettings.t option;
    (*

    Specifies CloudWatch settings and selection rules for the data migration.

    *)
  10. sourceDataSettings : SourceDataSettings.t option;
    (*

    Specifies information about the data migration's source data provider.

    *)
  11. targetDataSettings : TargetDataSettings.t option;
    (*

    Specifies information about the data migration's target data provider.

    *)
  12. dataMigrationStatistics : DataMigrationStatistics.t option;
    (*

    Provides information about the data migration's run, including start and stop time, latency, and data migration progress.

    *)
  13. dataMigrationStatus : String_.t option;
    (*

    The current status of the data migration.

    *)
  14. publicIpAddresses : PublicIpAddressList.t option;
    (*

    The IP addresses of the endpoints for the data migration.

    *)
  15. dataMigrationCidrBlocks : DataMigrationCidrBlock.t option;
    (*

    The CIDR blocks of the endpoints for the data migration.

    *)
  16. lastFailureMessage : String_.t option;
    (*

    Information about the data migration's most recent error or failure.

    *)
  17. stopReason : String_.t option;
    (*

    The reason the data migration last stopped.

    *)
}
Sourceval make : ?dataMigrationName:??? -> ?dataMigrationArn:??? -> ?dataMigrationCreateTime:??? -> ?dataMigrationStartTime:??? -> ?dataMigrationEndTime:??? -> ?serviceAccessRoleArn:??? -> ?migrationProjectArn:??? -> ?dataMigrationType:??? -> ?dataMigrationSettings:??? -> ?sourceDataSettings:??? -> ?targetDataSettings:??? -> ?dataMigrationStatistics:??? -> ?dataMigrationStatus:??? -> ?publicIpAddresses:??? -> ?dataMigrationCidrBlocks:??? -> ?lastFailureMessage:??? -> ?stopReason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of String_.t | `Structure of (string * [> `Enum of string | `String of String_.t | `Timestamp of Iso8601DateTime.t ]) list ] list | `String of String_.t | `Structure of (string * [> `Boolean of BooleanOptional.t | `Integer of IntegerOptional.t | `Long of Long.t | `String of SecretString.t | `Timestamp of Iso8601DateTime.t ]) list | `Timestamp of Iso8601DateTime.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