Amazon.RDS.AmazonRDSClient.DeleteDBInstance C# (CSharp) Метод

DeleteDBInstance() публичный Метод

The DeleteDBInstance action deletes a previously provisioned DB instance. When you delete a DB instance, all automated backups for that instance are deleted and cannot be recovered. Manual DB snapshots of the DB instance to be deleted by DeleteDBInstance are not deleted.

If you request a final DB snapshot the status of the Amazon RDS DB instance is deleting until the DB snapshot is created. The API action DescribeDBInstance is used to monitor the status of this operation. The action cannot be canceled or reverted once submitted.

Note that when a DB instance is in a failure state and has a status of failed, incompatible-restore, or incompatible-network, you can only delete it when the SkipFinalSnapshot parameter is set to true.

If the specified DB instance is part of an Amazon Aurora DB cluster, you cannot delete the DB instance if the following are true:

  • The DB cluster is a Read Replica of another Amazon Aurora DB cluster.

  • The DB instance is the only instance in the DB cluster.

To delete a DB instance in this case, first call the PromoteReadReplicaDBCluster API action to promote the DB cluster so it's no longer a Read Replica. After the promotion completes, then call the DeleteDBInstance API action to delete the final instance in the DB cluster.

/// DBInstanceIdentifier does not refer to an existing DB instance. /// /// DBSnapshotIdentifier is already used by an existing snapshot. /// /// The DB cluster is not in a valid state. /// /// The specified DB instance is not in the available state. /// /// Request would result in user exceeding the allowed number of DB snapshots. ///
public DeleteDBInstance ( DeleteDBInstanceRequest request ) : DeleteDBInstanceResponse
request Amazon.RDS.Model.DeleteDBInstanceRequest Container for the necessary parameters to execute the DeleteDBInstance service method.
Результат Amazon.RDS.Model.DeleteDBInstanceResponse
        public DeleteDBInstanceResponse DeleteDBInstance(DeleteDBInstanceRequest request)
        {
            var marshaller = new DeleteDBInstanceRequestMarshaller();
            var unmarshaller = DeleteDBInstanceResponseUnmarshaller.Instance;

            return Invoke<DeleteDBInstanceRequest,DeleteDBInstanceResponse>(request, marshaller, unmarshaller);
        }

Usage Example

Пример #1
0
        private static void deleteDatabaseByName(string databaseNameTarget, AmazonRDSClient rdsClient)
        {
            DeleteDBInstanceRequest deleteRequest = new DeleteDBInstanceRequest()
            {
                DBInstanceIdentifier = databaseNameTarget,
                SkipFinalSnapshot = true
            };
            DeleteDBInstanceResponse deleteResponse =
                rdsClient.DeleteDBInstance(deleteRequest);

            HttpStatusCode statusCode = deleteResponse.HttpStatusCode;

            if (!statusCode.Equals(HttpStatusCode.OK))
            {
                throw new Exception();
            }
        }
AmazonRDSClient