com.amazonaws.services.neptune.model.DeleteDBInstanceRequest Maven / Gradle / Ivy
Show all versions of aws-java-sdk-neptune Show documentation
/*
* Copyright 2019-2024 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.neptune.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:
*
*
* -
*
* Must match the name of an existing DB instance.
*
*
*
*/
private String dBInstanceIdentifier;
/**
*
* 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 that when a DB instance is in a failure state and has a status of 'failed', 'incompatible-restore', or
* 'incompatible-network', it can only be deleted when the SkipFinalSnapshot parameter is set to "true".
*
*
* Specify true
when deleting a Read Replica.
*
*
*
* The FinalDBSnapshotIdentifier parameter must be specified if SkipFinalSnapshot is false
.
*
*
*
* Default: false
*
*/
private Boolean skipFinalSnapshot;
/**
*
* The DBSnapshotIdentifier of the new DBSnapshot created when SkipFinalSnapshot is set to false
.
*
*
*
* Specifying this parameter and also setting the SkipFinalShapshot parameter to true results in an error.
*
*
*
* Constraints:
*
*
* -
*
* Must be 1 to 255 letters or numbers.
*
*
* -
*
* First character must be a letter
*
*
* -
*
* Cannot end with a hyphen or contain two consecutive hyphens
*
*
* -
*
* Cannot be specified when deleting a Read Replica.
*
*
*
*/
private String finalDBSnapshotIdentifier;
/**
*
* The DB instance identifier for the DB instance to be deleted. This parameter isn't case-sensitive.
*
*
* Constraints:
*
*
* -
*
* Must match the name of an existing DB instance.
*
*
*
*
* @param dBInstanceIdentifier
* The DB instance identifier for the DB instance to be deleted. This parameter isn't case-sensitive.
*
* Constraints:
*
*
* -
*
* Must match the name of an existing DB instance.
*
*
*/
public void setDBInstanceIdentifier(String dBInstanceIdentifier) {
this.dBInstanceIdentifier = dBInstanceIdentifier;
}
/**
*
* The DB instance identifier for the DB instance to be deleted. This parameter isn't case-sensitive.
*
*
* Constraints:
*
*
* -
*
* Must match the name of an existing DB instance.
*
*
*
*
* @return The DB instance identifier for the DB instance to be deleted. This parameter isn't case-sensitive.
*
* Constraints:
*
*
* -
*
* Must match the name of an existing DB instance.
*
*
*/
public String getDBInstanceIdentifier() {
return this.dBInstanceIdentifier;
}
/**
*
* The DB instance identifier for the DB instance to be deleted. This parameter isn't case-sensitive.
*
*
* Constraints:
*
*
* -
*
* Must match the name of an existing DB instance.
*
*
*
*
* @param dBInstanceIdentifier
* The DB instance identifier for the DB instance to be deleted. This parameter isn't case-sensitive.
*
* Constraints:
*
*
* -
*
* Must match the name of an existing DB instance.
*
*
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DeleteDBInstanceRequest withDBInstanceIdentifier(String dBInstanceIdentifier) {
setDBInstanceIdentifier(dBInstanceIdentifier);
return this;
}
/**
*
* 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 that when a DB instance is in a failure state and has a status of 'failed', 'incompatible-restore', or
* 'incompatible-network', it can only be deleted when the SkipFinalSnapshot parameter is set to "true".
*
*
* Specify true
when deleting a Read Replica.
*
*
*
* The FinalDBSnapshotIdentifier parameter must be specified if SkipFinalSnapshot is false
.
*
*
*
* Default: false
*
*
* @param 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 that when a DB instance is in a failure state and has a status of 'failed', 'incompatible-restore',
* or 'incompatible-network', it can only be deleted when the SkipFinalSnapshot parameter is set to "true".
*
*
* Specify true
when deleting a Read Replica.
*
*
*
* The FinalDBSnapshotIdentifier parameter must be specified if SkipFinalSnapshot is false
.
*
*
*
* Default: false
*/
public void setSkipFinalSnapshot(Boolean skipFinalSnapshot) {
this.skipFinalSnapshot = 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 that when a DB instance is in a failure state and has a status of 'failed', 'incompatible-restore', or
* 'incompatible-network', it can only be deleted when the SkipFinalSnapshot parameter is set to "true".
*
*
* Specify true
when deleting a Read Replica.
*
*
*
* The FinalDBSnapshotIdentifier parameter must be specified if SkipFinalSnapshot is false
.
*
*
*
* Default: false
*
*
* @return 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 that when a DB instance is in a failure state and has a status of 'failed', 'incompatible-restore',
* or 'incompatible-network', it can only be deleted when the SkipFinalSnapshot parameter is set to "true".
*
*
* Specify true
when deleting a Read Replica.
*
*
*
* The FinalDBSnapshotIdentifier parameter must be specified if SkipFinalSnapshot is false
.
*
*
*
* Default: false
*/
public Boolean getSkipFinalSnapshot() {
return this.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 that when a DB instance is in a failure state and has a status of 'failed', 'incompatible-restore', or
* 'incompatible-network', it can only be deleted when the SkipFinalSnapshot parameter is set to "true".
*
*
* Specify true
when deleting a Read Replica.
*
*
*
* The FinalDBSnapshotIdentifier parameter must be specified if SkipFinalSnapshot is false
.
*
*
*
* Default: false
*
*
* @param 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 that when a DB instance is in a failure state and has a status of 'failed', 'incompatible-restore',
* or 'incompatible-network', it can only be deleted when the SkipFinalSnapshot parameter is set to "true".
*
*
* Specify true
when deleting a Read Replica.
*
*
*
* The FinalDBSnapshotIdentifier parameter must be specified if SkipFinalSnapshot is false
.
*
*
*
* Default: false
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DeleteDBInstanceRequest withSkipFinalSnapshot(Boolean skipFinalSnapshot) {
setSkipFinalSnapshot(skipFinalSnapshot);
return this;
}
/**
*
* 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 that when a DB instance is in a failure state and has a status of 'failed', 'incompatible-restore', or
* 'incompatible-network', it can only be deleted when the SkipFinalSnapshot parameter is set to "true".
*
*
* Specify true
when deleting a Read Replica.
*
*
*
* The FinalDBSnapshotIdentifier parameter must be specified if SkipFinalSnapshot is false
.
*
*
*
* Default: false
*
*
* @return 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 that when a DB instance is in a failure state and has a status of 'failed', 'incompatible-restore',
* or 'incompatible-network', it can only be deleted when the SkipFinalSnapshot parameter is set to "true".
*
*
* Specify true
when deleting a Read Replica.
*
*
*
* The FinalDBSnapshotIdentifier parameter must be specified if SkipFinalSnapshot is false
.
*
*
*
* Default: false
*/
public Boolean isSkipFinalSnapshot() {
return this.skipFinalSnapshot;
}
/**
*
* The DBSnapshotIdentifier of the new DBSnapshot created when SkipFinalSnapshot is set to false
.
*
*
*
* Specifying this parameter and also setting the SkipFinalShapshot parameter to true results in an error.
*
*
*
* Constraints:
*
*
* -
*
* Must be 1 to 255 letters or numbers.
*
*
* -
*
* First character must be a letter
*
*
* -
*
* Cannot end with a hyphen or contain two consecutive hyphens
*
*
* -
*
* Cannot be specified when deleting a Read Replica.
*
*
*
*
* @param finalDBSnapshotIdentifier
* The DBSnapshotIdentifier of the new DBSnapshot created when SkipFinalSnapshot is set to false
* .
*
* Specifying this parameter and also setting the SkipFinalShapshot parameter to true results in an error.
*
*
*
* Constraints:
*
*
* -
*
* Must be 1 to 255 letters or numbers.
*
*
* -
*
* First character must be a letter
*
*
* -
*
* Cannot end with a hyphen or contain two consecutive hyphens
*
*
* -
*
* Cannot be specified when deleting a Read Replica.
*
*
*/
public void setFinalDBSnapshotIdentifier(String finalDBSnapshotIdentifier) {
this.finalDBSnapshotIdentifier = finalDBSnapshotIdentifier;
}
/**
*
* The DBSnapshotIdentifier of the new DBSnapshot created when SkipFinalSnapshot is set to false
.
*
*
*
* Specifying this parameter and also setting the SkipFinalShapshot parameter to true results in an error.
*
*
*
* Constraints:
*
*
* -
*
* Must be 1 to 255 letters or numbers.
*
*
* -
*
* First character must be a letter
*
*
* -
*
* Cannot end with a hyphen or contain two consecutive hyphens
*
*
* -
*
* Cannot be specified when deleting a Read Replica.
*
*
*
*
* @return The DBSnapshotIdentifier of the new DBSnapshot created when SkipFinalSnapshot is set to
* false
.
*
* Specifying this parameter and also setting the SkipFinalShapshot parameter to true results in an error.
*
*
*
* Constraints:
*
*
* -
*
* Must be 1 to 255 letters or numbers.
*
*
* -
*
* First character must be a letter
*
*
* -
*
* Cannot end with a hyphen or contain two consecutive hyphens
*
*
* -
*
* Cannot be specified when deleting a Read Replica.
*
*
*/
public String getFinalDBSnapshotIdentifier() {
return this.finalDBSnapshotIdentifier;
}
/**
*
* The DBSnapshotIdentifier of the new DBSnapshot created when SkipFinalSnapshot is set to false
.
*
*
*
* Specifying this parameter and also setting the SkipFinalShapshot parameter to true results in an error.
*
*
*
* Constraints:
*
*
* -
*
* Must be 1 to 255 letters or numbers.
*
*
* -
*
* First character must be a letter
*
*
* -
*
* Cannot end with a hyphen or contain two consecutive hyphens
*
*
* -
*
* Cannot be specified when deleting a Read Replica.
*
*
*
*
* @param finalDBSnapshotIdentifier
* The DBSnapshotIdentifier of the new DBSnapshot created when SkipFinalSnapshot is set to false
* .
*
* Specifying this parameter and also setting the SkipFinalShapshot parameter to true results in an error.
*
*
*
* Constraints:
*
*
* -
*
* Must be 1 to 255 letters or numbers.
*
*
* -
*
* First character must be a letter
*
*
* -
*
* Cannot end with a hyphen or contain two consecutive hyphens
*
*
* -
*
* Cannot be specified when deleting a Read Replica.
*
*
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DeleteDBInstanceRequest withFinalDBSnapshotIdentifier(String finalDBSnapshotIdentifier) {
setFinalDBSnapshotIdentifier(finalDBSnapshotIdentifier);
return this;
}
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getDBInstanceIdentifier() != null)
sb.append("DBInstanceIdentifier: ").append(getDBInstanceIdentifier()).append(",");
if (getSkipFinalSnapshot() != null)
sb.append("SkipFinalSnapshot: ").append(getSkipFinalSnapshot()).append(",");
if (getFinalDBSnapshotIdentifier() != null)
sb.append("FinalDBSnapshotIdentifier: ").append(getFinalDBSnapshotIdentifier());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof DeleteDBInstanceRequest == false)
return false;
DeleteDBInstanceRequest other = (DeleteDBInstanceRequest) obj;
if (other.getDBInstanceIdentifier() == null ^ this.getDBInstanceIdentifier() == null)
return false;
if (other.getDBInstanceIdentifier() != null && other.getDBInstanceIdentifier().equals(this.getDBInstanceIdentifier()) == false)
return false;
if (other.getSkipFinalSnapshot() == null ^ this.getSkipFinalSnapshot() == null)
return false;
if (other.getSkipFinalSnapshot() != null && other.getSkipFinalSnapshot().equals(this.getSkipFinalSnapshot()) == false)
return false;
if (other.getFinalDBSnapshotIdentifier() == null ^ this.getFinalDBSnapshotIdentifier() == null)
return false;
if (other.getFinalDBSnapshotIdentifier() != null && other.getFinalDBSnapshotIdentifier().equals(this.getFinalDBSnapshotIdentifier()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getDBInstanceIdentifier() == null) ? 0 : getDBInstanceIdentifier().hashCode());
hashCode = prime * hashCode + ((getSkipFinalSnapshot() == null) ? 0 : getSkipFinalSnapshot().hashCode());
hashCode = prime * hashCode + ((getFinalDBSnapshotIdentifier() == null) ? 0 : getFinalDBSnapshotIdentifier().hashCode());
return hashCode;
}
@Override
public DeleteDBInstanceRequest clone() {
return (DeleteDBInstanceRequest) super.clone();
}
}