C# Class Amazon.RDS.Model.RestoreDBInstanceFromDBSnapshotRequest

Container for the parameters to the RestoreDBInstanceFromDBSnapshot operation.

Creates a new DB Instance from a DB snapshot. The target database is created from the source database restore point with the same configuration as the original source database, except that the new RDS instance is created with the default security group.

Inheritance: Amazon.Runtime.AmazonWebServiceRequest
Exibir arquivo Open project: aws/aws-sdk-net Class Usage Examples

Public Methods

Method Description
RestoreDBInstanceFromDBSnapshotRequest ( ) : System

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

RestoreDBInstanceFromDBSnapshotRequest ( string dbInstanceIdentifier, string dbSnapshotIdentifier ) : System

Instantiates RestoreDBInstanceFromDBSnapshotRequest with the parameterized properties

Private Methods

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

Method Details

RestoreDBInstanceFromDBSnapshotRequest() public method

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

RestoreDBInstanceFromDBSnapshotRequest() public method

Instantiates RestoreDBInstanceFromDBSnapshotRequest with the parameterized properties
public RestoreDBInstanceFromDBSnapshotRequest ( string dbInstanceIdentifier, string dbSnapshotIdentifier ) : System
dbInstanceIdentifier string Name of the DB instance to create from the DB snapshot. This parameter isn't case-sensitive. Constraints:
  • Must contain from 1 to 63 alphanumeric characters or hyphens (1 to 15 for SQL Server)
  • First character must be a letter
  • Cannot end with a hyphen or contain two consecutive hyphens
Example: my-snapshot-id
dbSnapshotIdentifier string The identifier for the DB snapshot to restore from. Constraints:
  • 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
If you are restoring from a shared manual DB snapshot, the DBSnapshotIdentifier must be the ARN of the shared DB snapshot.
return System