Amazon Relational Database Service
Command Line Interface Reference (API Version 2012-04-23)
Print this pageEmail this pageGo to the ForumsView the PDFShare this page on TwitterShare this page on FacebookBookmark this page on DeliciousSubmit this page to RedditSubmit this page to DiggDid this page help you?  Yes  No   Tell us about it...

rds-restore-db-instance-from-db-snapshot

Description

Creates a new DB Instance from a DB Snapshot of an existing DB Instance, effectively replicating the existing instance at the time the DB Snapshot was taken. Some characteristics of the new DB Instance can be modified using optional parameters; if these are omitted, the new restored DB Instance defaults to the characteristics of the DB Instance from which the snapshot was taken.

[Note]Note

This operation is not supported for Read Replica DB Instances.

Syntax

rds-restore-db-instance-from-db-snapshot DBInstanceIdentifier

-s (--db-snapshot-identifier) value

[-e (--engine) value ]

[-lm (--license model) value ]

[-z (--availability-zone) value ]

[-c (--db-instance-class) value ]

[-m (--multi-az) value]

[-sn (--db-subnet-group-name) value ]

[-n (--db-name) value ]

[-p (--port) value ]

[-au (--auto-minor-version-upgrade) value ]

[General Options]

Options

NameDescriptionRequired

DBInstanceIdentifier

DB Instance identifier. This is the unique key that identifies a DB Instance. Stored as a lowercase string.

Type: String

Default: None

Constraints: Must contain 1 to 63 alphanumeric characters or hyphens. First character must be a letter. Cannot end with a hyphen or contain two consecutive hyphens.

Example: myinstance

Yes

-z value

--availability-zone value

The EC2 Availability Zone that the DB Instance will be created in.

Type: String

Default: A random, system-chosen Availability Zone.

Example: -z us-east-1c

No

-s value

--db-snapshot-identifier value

The identifier for an existing DB Snapshot.

Type: String

Default: None

Constraints: Cannot be null, empty, or blank. Must contain from 1 to 255 alphanumeric characters or hyphens. First character must be a letter. Cannot end with a hyphen or contain two consecutive hyphens.

Example: -s my-snapshot-id

Yes

-e value

--engine value

Name of the database engine to use for the new DB Instance.

Type: String

Default: Same as the source DB Instance.

Valid values: MySQL | oracle-se1 | oracle-se | oracle-ee

Yes

-c value

--db-instance-class value

Contains the compute and memory capacity of the DB Instance. Different instance classes are available for different database engines. For information about valid values for a particular engine, use the rds-describe-orderable-db-instance-options command.

Type: String

Default: None

Valid values: db.t1.micro | db.m1.small | db.m1.large | db.m1.xlarge | db.m2.2xlarge | db.m2.4xlarge

Example: --db-instance-class db.m1.xlarge

No

-lm

--license-model value

License model for the new DB Instance.

Type: String

Default: Same as the source DB Instance.

Valid values: license-included | bring-your-own-license | general-public-license

Example: --license-model bring-your-own-license

No

-sn value

--db-subnet-group value

The name of the DB Subnet Group to retore into. Specifying a DB Subnet Group will restore to a DB Instance in the named VPC.

[Note]Note

You can restore a DB Instance from a VPC to a DB Instance in another VPC, or from a non-VPC DB Instance into a DB Instance in a VPC. You cannot restore from a VPC to a DB Instance that is not in a VPC.

Type: String

Default: none

Constraints: Must be the name of an existing DB Subnet Group.

Example: --db-subnet-group-name mydbsubnetgroup

No

-m value

--multi-az value

Specifies if the new DB Instance is a Multi-AZ deployment.

Type: Boolean

Default: false

Valid values: true | false

Constraints: The --availability-zone parameter cannot be set if the --multi-az parameter is set to true.

No

-n value

--db-name value

The meaning of this parameter differs according to the database engine you use.

MySQL

Name of a database to create when the DB Instance is created. If this parameter is not specified, no database is created in the instance.

Constraints:

  • Cannot be empty.

  • Must contain 1 to 64 alphanumeric characters.

  • Cannot be a word reserved by the specified database engine.

Type: String

Example: --db-name MyDatabase

Oracle

The Oracle System ID (SID) of the created DB Instance.

Constraints:

  • Cannot be longer than 8 characters.

Type: String

Example: --db-name MYORACLE

No

-p value

--port value

Port number that the DB Instance uses for connections.

Type: Integer

Default: The value used in the DB Snapshot

Example: --port 1234

No

-au value

--auto-minor-version-upgrade value

Indicates that minor version upgrades will be applied automatically to the DB Instance during the maintenance window.

Type: Boolean

Example: --au true

No

Output

The command returns a table that contains the following information:

  • DBInstanceID—the user-supplied database identifier

  • Created—the data and time the instance was created, in UTC

  • Class—The compute and memory capacity of the DB Instance

  • Engine—Name of the database engine to be used for this DB Instance

  • Storage—Initially allocated storage size specified in GBs

  • Master Username—The master username for the DB Instance

  • Status—The current status of the instance. Valid values: available | backing-up | creating | deleted | deleting | failed | modifying | rebooting | resetting-master-credentials

  • Endpoint Address—Address of the DB Instance

  • Port—Port used to connect to the DB Instance

  • AZ—The instance's Availability Zone

  • PendingClass—The class to which the instance will be scaled during the next maintenance window, or to which it is currently being scaled if the --apply-immediately option was specified

  • PendingCredentials—The (hidden) master user password that will be applied to the DB Instance

  • PendingStorage—The storage size to which the instance will be scaled during the next maintenance window, or to which it is currently being scaled if the --apply-immediately option was specified

  • DB Name—Name of the initial database created when the instance was created (for the MySQL engine) or the Oracle System ID (SID) of the created DB Instance (for the Oracle engine). This column appears only in the --show-long view

  • Maintenance Window—The window during which patching and instance modifications will be performed. This column appears only in the --show-long view

  • Name—Security Group name

  • Status—Status of authorization. Valid values: authorizing | authorized | revoking

  • Name—DB Subnet Group name

  • Description—DB Subnet Group description

  • Group Name—Name of DB Parameter Group applied to

  • Apply Status—Status of applying the parameter group. Valid values: in-sync | pending-reboot | applying

  • Multi-AZ—Indicates if this is a Multi-AZ DB Instance.

  • EngineVersion—Database engine version number.

Examples

Restore a Database from a Snapshot with Minimal Parameters

This example restores a database from a DB Snapshot with the minimal set of parameters.

PROMPT> rds-restore-db-instance-from-db-snapshot mynewrestoreddatabase -s myexistingsnapshot
                    
                

Restore a Database from a Snapshot, Specifying a New Availability Zone

This example restores a database from a DB Snapshot with a new Availability Zone.

PROMPT> rds-restore-db-instance-from-db-snapshot mynewrestoreddatabase -s myexistingsnapshot -c db.m1.large -p 3501 -z us-east-1a