/* * Copyright 2018-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions * and limitations under the License. */ package com.amazonaws.services.rds.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.AmazonWebServiceRequest; /** *

* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class DeleteDBInstanceRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** *

* The DB instance identifier for the DB instance to be deleted. This parameter isn't case-sensitive. *

*

* Constraints: *

* */ private String dBInstanceIdentifier; /** *

* A value that indicates whether to skip the creation of a final DB snapshot before deleting the instance. If you * enable this parameter, RDS doesn't create a DB snapshot. If you don't enable this parameter, RDS creates a DB * snapshot before the DB instance is deleted. By default, skip isn't enabled, and the DB snapshot is created. *

* *

* If you don't enable this parameter, you must specify the FinalDBSnapshotIdentifier parameter. *

*
*

* When a DB instance is in a failure state and has a status of failed, * incompatible-restore, or incompatible-network, RDS can delete the instance only if you * enable this parameter. *

*

* If you delete a read replica or an RDS Custom instance, you must enable this setting. *

*

* This setting is required for RDS Custom. *

*/ private Boolean skipFinalSnapshot; /** *

* The DBSnapshotIdentifier of the new DBSnapshot created when the * SkipFinalSnapshot parameter is disabled. *

* *

* If you enable this parameter and also enable SkipFinalShapshot, the command results in an error. *

*
*

* This setting doesn't apply to RDS Custom. *

*

* Constraints: *

* */ private String finalDBSnapshotIdentifier; /** *

* A value that indicates whether to remove automated backups immediately after the DB instance is deleted. This * parameter isn't case-sensitive. The default is to remove automated backups immediately after the DB instance is * deleted. *

*/ private Boolean deleteAutomatedBackups; /** * Default constructor for DeleteDBInstanceRequest object. Callers should use the setter or fluent setter (with...) * methods to initialize the object after creating it. */ public DeleteDBInstanceRequest() { } /** * Constructs a new DeleteDBInstanceRequest object. Callers should use the setter or fluent setter (with...) methods * to initialize any additional object members. * * @param dBInstanceIdentifier * The DB instance identifier for the DB instance to be deleted. This parameter isn't case-sensitive.

*

* Constraints: *

*