InstanceRestoreToPointInTime

data class InstanceRestoreToPointInTime(val restoreTime: String? = null, val sourceDbInstanceAutomatedBackupsArn: String? = null, val sourceDbInstanceIdentifier: String? = null, val sourceDbiResourceId: String? = null, val useLatestRestorableTime: Boolean? = null)

Constructors

Link copied to clipboard
constructor(restoreTime: String? = null, sourceDbInstanceAutomatedBackupsArn: String? = null, sourceDbInstanceIdentifier: String? = null, sourceDbiResourceId: String? = null, useLatestRestorableTime: Boolean? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val restoreTime: String? = null

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 use_latest_restorable_time.

Link copied to clipboard

The ARN of the automated backup from which to restore. Required if source_db_instance_identifier or source_dbi_resource_id is not specified.

Link copied to clipboard

The identifier of the source DB instance from which to restore. Must match the identifier of an existing DB instance. Required if source_db_instance_automated_backups_arn or source_dbi_resource_id is not specified.

Link copied to clipboard

The resource ID of the source DB instance from which to restore. Required if source_db_instance_identifier or source_db_instance_automated_backups_arn is not specified.

Link copied to clipboard

A boolean value that indicates whether the DB instance is restored from the latest backup time. Defaults to false. Cannot be specified with restore_time.