AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.
Container for the parameters to the RestoreDBClusterToPointInTime operation.
Restores a DB cluster to an arbitrary point in time. Users can restore to any point
in time before
This action only restores the DB cluster, not the DB instances for that DB cluster.
You must invoke the CreateDBInstance action to create DB instances for the
restored DB cluster, specifying the identifier of the restored DB cluster in LatestRestorableTime
for up to BackupRetentionPeriod
days. The target DB cluster is created from the source DB cluster with the same configuration
as the original DB cluster, except that the new DB cluster is created with the default
DB security group.
DBClusterIdentifier
.
You can create DB instances only after the RestoreDBClusterToPointInTime
action has completed and the DB cluster is available.
Namespace: Amazon.Neptune.Model
Assembly: AWSSDK.Neptune.dll
Version: 3.x.y.z
public class RestoreDBClusterToPointInTimeRequest : AmazonNeptuneRequest IAmazonWebServiceRequest
The RestoreDBClusterToPointInTimeRequest type exposes the following members
Name | Description | |
---|---|---|
![]() |
RestoreDBClusterToPointInTimeRequest() |
Name | Type | Description | |
---|---|---|---|
![]() |
DBClusterIdentifier | System.String |
Gets and sets the property DBClusterIdentifier. The name of the new DB cluster to be created. Constraints:
|
![]() |
DBClusterParameterGroupName | System.String |
Gets and sets the property DBClusterParameterGroupName. The name of the DB cluster parameter group to associate with the new DB cluster. Constraints:
|
![]() |
DBSubnetGroupName | System.String |
Gets and sets the property DBSubnetGroupName. The DB subnet group name to use for the new DB cluster. Constraints: If supplied, must match the name of an existing DBSubnetGroup.
Example: |
![]() |
DeletionProtection | System.Boolean |
Gets and sets the property DeletionProtection. A value that indicates whether the DB cluster has deletion protection enabled. The database can't be deleted when deletion protection is enabled. By default, deletion protection is disabled. |
![]() |
EnableCloudwatchLogsExports | System.Collections.Generic.List<System.String> |
Gets and sets the property EnableCloudwatchLogsExports. The list of logs that the restored DB cluster is to export to CloudWatch Logs. |
![]() |
EnableIAMDatabaseAuthentication | System.Boolean |
Gets and sets the property EnableIAMDatabaseAuthentication. True to enable mapping of Amazon Identity and Access Management (IAM) accounts to database accounts, and otherwise false.
Default: |
![]() |
KmsKeyId | System.String |
Gets and sets the property KmsKeyId. The Amazon KMS key identifier to use when restoring an encrypted DB cluster from an encrypted DB cluster. The KMS key identifier is the Amazon Resource Name (ARN) for the KMS encryption key. If you are restoring a DB cluster with the same Amazon account that owns the KMS encryption key used to encrypt the new DB cluster, then you can use the KMS key alias instead of the ARN for the KMS encryption key.
You can restore to a new DB cluster and encrypt the new DB cluster with a KMS key
that is different than the KMS key used to encrypt the source DB cluster. The new
DB cluster is encrypted with the KMS key identified by the
If you do not specify a value for the
If |
![]() |
OptionGroupName | System.String |
Gets and sets the property OptionGroupName. (Not supported by Neptune) |
![]() |
Port | System.Int32 |
Gets and sets the property Port. The port number on which the new DB cluster accepts connections.
Constraints: Value must be Default: The same port as the original DB cluster. |
![]() |
RestoreToTime | System.DateTime |
Gets and sets the property RestoreToTimeUtc. This property is deprecated. Setting this property results in non-UTC DateTimes not being marshalled correctly. Use RestoreToTimeUtc instead. Setting either RestoreToTime or RestoreToTimeUtc results in both RestoreToTime and RestoreToTimeUtc being assigned, the latest assignment to either one of the two property is reflected in the value of both. RestoreToTime is provided for backwards compatibility only and assigning a non-Utc DateTime to it results in the wrong timestamp being passed to the service. The date and time to restore the DB cluster to. Valid Values: Value must be a time in Universal Coordinated Time (UTC) format Constraints:
Example: |
![]() |
RestoreToTimeUtc | System.DateTime |
Gets and sets the property RestoreToTimeUtc. The date and time to restore the DB cluster to. Valid Values: Value must be a time in Universal Coordinated Time (UTC) format Constraints:
Example: |
![]() |
RestoreType | System.String |
Gets and sets the property RestoreType. The type of restore to be performed. You can specify one of the following values:
If you don't specify a |
![]() |
SourceDBClusterIdentifier | System.String |
Gets and sets the property SourceDBClusterIdentifier. The identifier of the source DB cluster from which to restore. Constraints:
|
![]() |
Tags | System.Collections.Generic.List<Amazon.Neptune.Model.Tag> |
Gets and sets the property Tags. The tags to be applied to the restored DB cluster. |
![]() |
UseLatestRestorableTime | System.Boolean |
Gets and sets the property UseLatestRestorableTime.
A value that is set to
Default:
Constraints: Cannot be specified if |
![]() |
VpcSecurityGroupIds | System.Collections.Generic.List<System.String> |
Gets and sets the property VpcSecurityGroupIds. A list of VPC security groups that the new DB cluster belongs to. |
The following example restores a DB cluster to a new DB cluster at a point in time from the source DB cluster.
var response = client.RestoreDBClusterToPointInTime(new RestoreDBClusterToPointInTimeRequest { DBClusterIdentifier = "sample-restored-cluster1", RestoreToTime = new DateTime(2016, 9, 13, 11, 45, 0), SourceDBClusterIdentifier = "sample-cluster1" }); DBCluster dbCluster = response.DBCluster;
.NET Core App:
Supported in: 3.1
.NET Standard:
Supported in: 2.0
.NET Framework:
Supported in: 4.5, 4.0, 3.5