Container for the parameters to the DeleteDBInstance operation.

The DeleteDBInstance API deletes a previously provisioned RDS instance. A successful response from the web service indicates the request was received correctly. If a final DBSnapshot is requested the status of the RDS instance will be "deleting" until the DBSnapshot is created. DescribeDBInstance is used to monitor the status of this operation. This cannot be canceled or reverted once submitted.

Namespace: Amazon.RDS.Model
Assembly: AWSSDK (in AWSSDK.dll) Version: 1.4.10.0 (1.4.10.0)

Syntax

         
 C#  Visual Basic  Visual C++ 
public class DeleteDBInstanceRequest : AmazonWebServiceRequest
Public Class DeleteDBInstanceRequest _
	Inherits AmazonWebServiceRequest
public ref class DeleteDBInstanceRequest : public AmazonWebServiceRequest

Members

            
 All Members  Constructors   Properties   Methods  
 Public

 Protected
 Instance

 Static 
 Declared

 Inherited
 XNA Framework Only 

 .NET Compact Framework Only 

 MemberDescription
DeleteDBInstanceRequest()()()()
Initializes a new instance of the DeleteDBInstanceRequest class
DBInstanceIdentifier
The DB Instance identifier for the DB Instance to be deleted. This parameter isn't case sensitive. 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
Equals(Object)
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
FinalDBSnapshotIdentifier
The DBSnapshotIdentifier of the new DBSnapshot created when SkipFinalSnapshot is set to false.
Note:
Specifying this parameter and also setting the SkipFinalShapshot parameter to true results in an error.
Constraints:
  • Must be 1 to 255 alphanumeric characters
  • First character must be a letter
  • Cannot end with a hyphen or contain two consecutive hyphens
GetHashCode()()()()
Serves as a hash function for a particular type.
(Inherited from Object.)
GetType()()()()
Gets the Type of the current instance.
(Inherited from Object.)
SkipFinalSnapshot
Determines whether a final DB Snapshot is created before the DB Instance is deleted. If true is specified, no DBSnapshot is created. If false is specified, a DB Snapshot is created before the DB Instance is deleted.
Note:
The FinalDBSnapshotIdentifier parameter must be specified if SkipFinalSnapshot is false.
Default: false
ToString()()()()
Returns a String that represents the current Object.
(Inherited from Object.)
WithDBInstanceIdentifier(String)
Sets the DBInstanceIdentifier property
WithFinalDBSnapshotIdentifier(String)
Sets the FinalDBSnapshotIdentifier property
WithSkipFinalSnapshot(Boolean)
Sets the SkipFinalSnapshot property

Inheritance Hierarchy

System..::..Object
  Amazon.Runtime..::..AmazonWebServiceRequest
    Amazon.RDS.Model..::..DeleteDBInstanceRequest

See Also