Cluster Restore To Point In Time Args
data class ClusterRestoreToPointInTimeArgs(val restoreToTime: Output<String>? = null, val restoreType: Output<String>? = null, val sourceClusterIdentifier: Output<String>? = null, val sourceClusterResourceId: Output<String>? = null, val useLatestRestorableTime: Output<Boolean>? = null) : ConvertibleToJava<ClusterRestoreToPointInTimeArgs>
Constructors
Properties
Link copied to clipboard
Date and time in UTC format to restore the database cluster to. Conflicts with use_latest_restorable_time
.
Link copied to clipboard
Type of restore to be performed. Valid options are full-copy
(default) and copy-on-write
.
Link copied to clipboard
Identifier of the source database cluster from which to restore. When restoring from a cluster in another AWS account, the identifier is the ARN of that cluster.
Link copied to clipboard
Cluster resource ID of the source database cluster from which to restore. To be used for restoring a deleted cluster in the same account which still has a retained automatic backup available.
Link copied to clipboard
Set to true to restore the database cluster to the latest restorable backup time. Defaults to false. Conflicts with restore_to_time
.