C# Class Amazon.RDS.Model.RestoreDBInstanceToPointInTimeRequest

Container for the parameters to the RestoreDBInstanceToPointInTime operation. Restores a DB instance to an arbitrary point-in-time. Users can restore to any point in time before the latestRestorableTime for up to backupRetentionPeriod days. The target database is created from the source database with the same configuration as the original database except that the DB instance is created with the default DB security group.
Inheritance: AmazonRDSRequest
Exibir arquivo Open project: aws/aws-sdk-net Class Usage Examples

Public Methods

Method Description
RestoreDBInstanceToPointInTimeRequest ( ) : System

Empty constructor used to set properties independently even when a simple constructor is available

RestoreDBInstanceToPointInTimeRequest ( string sourceDBInstanceIdentifier, string targetDBInstanceIdentifier ) : System

Instantiates RestoreDBInstanceToPointInTimeRequest with the parameterized properties

Private Methods

Method Description
IsSetAutoMinorVersionUpgrade ( ) : bool
IsSetAvailabilityZone ( ) : bool
IsSetCopyTagsToSnapshot ( ) : bool
IsSetDBInstanceClass ( ) : bool
IsSetDBName ( ) : bool
IsSetDBSubnetGroupName ( ) : bool
IsSetDomain ( ) : bool
IsSetDomainIAMRoleName ( ) : bool
IsSetEngine ( ) : bool
IsSetIops ( ) : bool
IsSetLicenseModel ( ) : bool
IsSetMultiAZ ( ) : bool
IsSetOptionGroupName ( ) : bool
IsSetPort ( ) : bool
IsSetPubliclyAccessible ( ) : bool
IsSetRestoreTime ( ) : bool
IsSetSourceDBInstanceIdentifier ( ) : bool
IsSetStorageType ( ) : bool
IsSetTags ( ) : bool
IsSetTargetDBInstanceIdentifier ( ) : bool
IsSetTdeCredentialArn ( ) : bool
IsSetTdeCredentialPassword ( ) : bool
IsSetUseLatestRestorableTime ( ) : bool

Method Details

RestoreDBInstanceToPointInTimeRequest() public method

Empty constructor used to set properties independently even when a simple constructor is available
public RestoreDBInstanceToPointInTimeRequest ( ) : System
return System

RestoreDBInstanceToPointInTimeRequest() public method

Instantiates RestoreDBInstanceToPointInTimeRequest with the parameterized properties
public RestoreDBInstanceToPointInTimeRequest ( string sourceDBInstanceIdentifier, string targetDBInstanceIdentifier ) : System
sourceDBInstanceIdentifier string The identifier of the source DB instance from which to restore. Constraints:
  • Must be the identifier of an existing database instance
  • Must contain from 1 to 63 alphanumeric characters or hyphens
  • First character must be a letter
  • Cannot end with a hyphen or contain two consecutive hyphens
targetDBInstanceIdentifier string The name of the new database instance to be created. Constraints:
  • Must contain from 1 to 63 alphanumeric characters or hyphens
  • First character must be a letter
  • Cannot end with a hyphen or contain two consecutive hyphens
return System