ClusterRestoreToPointInTime constructor

const ClusterRestoreToPointInTime({
  1. Input<String?>? restoreToTime,
  2. Input<String?>? restoreType,
  3. required Input<String> sourceClusterIdentifier,
  4. Input<bool?>? useLatestRestorableTime,
})

Creates a new ClusterRestoreToPointInTime. restoreToTime The date and time to restore from. Value must be a time in Universal Coordinated Time (UTC) format and must be before the latest restorable time for the DB instance. Cannot be specified with useLatestRestorableTime. restoreType The type of restore to be performed. Valid values are full-copy, copy-on-write. sourceClusterIdentifier The identifier of the source DB cluster from which to restore. Must match the identifier of an existing DB cluster. useLatestRestorableTime A boolean value that indicates whether the DB cluster is restored from the latest backup time. Defaults to false. Cannot be specified with restoreToTime.

Implementation

const ClusterRestoreToPointInTime({
  this.restoreToTime,
  this.restoreType,
  required this.sourceClusterIdentifier,
  this.useLatestRestorableTime,
});