com.amazonaws.services.rds.model.DeleteDBClusterRequest Maven / Gradle / Ivy
Show all versions of aws-java-sdk-osgi Show documentation
/*
 * Copyright 2010-2016 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 com.amazonaws.AmazonWebServiceRequest;
/**
 * 
 */
public class DeleteDBClusterRequest extends AmazonWebServiceRequest implements
        Serializable, Cloneable {
    /**
     * 
     * The DB cluster identifier for the DB cluster 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
     * 
     *  
     * 
     */
    private String dBClusterIdentifier;
    /**
     * 
     * Determines whether a final DB cluster snapshot is created before the DB
     * cluster is deleted. If true is specified, no DB cluster
     * snapshot is created. If false is specified, a DB cluster
     * snapshot is created before the DB cluster is deleted.
     * 
     * 
     * 
     * You must specify a FinalDBSnapshotIdentifier parameter if
     * SkipFinalSnapshot is false.
     * 
     *  
     * 
     * Default: false
     * 
     */
    private Boolean skipFinalSnapshot;
    /**
     * 
     * The DB cluster snapshot identifier of the new DB cluster snapshot 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 alphanumeric characters
     * 
     *  
     * - 
     * 
     * First character must be a letter
     * 
     *  
     * - 
     * 
     * Cannot end with a hyphen or contain two consecutive hyphens
     * 
     *  
     * 
     */
    private String finalDBSnapshotIdentifier;
    /**
     * 
     * The DB cluster identifier for the DB cluster 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
     * 
     *  
     * 
     * 
     * @param dBClusterIdentifier
     *        The DB cluster identifier for the DB cluster 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
     *        
     *         
     */
    public void setDBClusterIdentifier(String dBClusterIdentifier) {
        this.dBClusterIdentifier = dBClusterIdentifier;
    }
    /**
     * 
     * The DB cluster identifier for the DB cluster 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
     * 
     *  
     * 
     * 
     * @return The DB cluster identifier for the DB cluster 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
     *         
     *          
     */
    public String getDBClusterIdentifier() {
        return this.dBClusterIdentifier;
    }
    /**
     * 
     * The DB cluster identifier for the DB cluster 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
     * 
     *  
     * 
     * 
     * @param dBClusterIdentifier
     *        The DB cluster identifier for the DB cluster 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
     *        
     *         
     * @return Returns a reference to this object so that method calls can be
     *         chained together.
     */
    public DeleteDBClusterRequest withDBClusterIdentifier(
            String dBClusterIdentifier) {
        setDBClusterIdentifier(dBClusterIdentifier);
        return this;
    }
    /**
     * 
     * Determines whether a final DB cluster snapshot is created before the DB
     * cluster is deleted. If true is specified, no DB cluster
     * snapshot is created. If false is specified, a DB cluster
     * snapshot is created before the DB cluster is deleted.
     * 
     * 
     * 
     * You must specify a FinalDBSnapshotIdentifier parameter if
     * SkipFinalSnapshot is false.
     * 
     *  
     * 
     * Default: false
     * 
     * 
     * @param skipFinalSnapshot
     *        Determines whether a final DB cluster snapshot is created before
     *        the DB cluster is deleted. If true is specified, no
     *        DB cluster snapshot is created. If false is
     *        specified, a DB cluster snapshot is created before the DB cluster
     *        is deleted.  
     *        
     *        You must specify a FinalDBSnapshotIdentifier
     *        parameter if SkipFinalSnapshot is false.
     *        
     *         
     *        
     *        Default: false
     */
    public void setSkipFinalSnapshot(Boolean skipFinalSnapshot) {
        this.skipFinalSnapshot = skipFinalSnapshot;
    }
    /**
     * 
     * Determines whether a final DB cluster snapshot is created before the DB
     * cluster is deleted. If true is specified, no DB cluster
     * snapshot is created. If false is specified, a DB cluster
     * snapshot is created before the DB cluster is deleted.
     * 
     * 
     * 
     * You must specify a FinalDBSnapshotIdentifier parameter if
     * SkipFinalSnapshot is false.
     * 
     *  
     * 
     * Default: false
     * 
     * 
     * @return Determines whether a final DB cluster snapshot is created before
     *         the DB cluster is deleted. If true is specified, no
     *         DB cluster snapshot is created. If false is
     *         specified, a DB cluster snapshot is created before the DB cluster
     *         is deleted.  
     *         
     *         You must specify a FinalDBSnapshotIdentifier
     *         parameter if SkipFinalSnapshot is false
     *         .
     *         
     *          
     *         
     *         Default: false
     */
    public Boolean getSkipFinalSnapshot() {
        return this.skipFinalSnapshot;
    }
    /**
     * 
     * Determines whether a final DB cluster snapshot is created before the DB
     * cluster is deleted. If true is specified, no DB cluster
     * snapshot is created. If false is specified, a DB cluster
     * snapshot is created before the DB cluster is deleted.
     * 
     * 
     * 
     * You must specify a FinalDBSnapshotIdentifier parameter if
     * SkipFinalSnapshot is false.
     * 
     *  
     * 
     * Default: false
     * 
     * 
     * @param skipFinalSnapshot
     *        Determines whether a final DB cluster snapshot is created before
     *        the DB cluster is deleted. If true is specified, no
     *        DB cluster snapshot is created. If false is
     *        specified, a DB cluster snapshot is created before the DB cluster
     *        is deleted.  
     *        
     *        You must specify a FinalDBSnapshotIdentifier
     *        parameter if SkipFinalSnapshot is false.
     *        
     *         
     *        
     *        Default: false
     * @return Returns a reference to this object so that method calls can be
     *         chained together.
     */
    public DeleteDBClusterRequest withSkipFinalSnapshot(
            Boolean skipFinalSnapshot) {
        setSkipFinalSnapshot(skipFinalSnapshot);
        return this;
    }
    /**
     * 
     * Determines whether a final DB cluster snapshot is created before the DB
     * cluster is deleted. If true is specified, no DB cluster
     * snapshot is created. If false is specified, a DB cluster
     * snapshot is created before the DB cluster is deleted.
     * 
     * 
     * 
     * You must specify a FinalDBSnapshotIdentifier parameter if
     * SkipFinalSnapshot is false.
     * 
     *  
     * 
     * Default: false
     * 
     * 
     * @return Determines whether a final DB cluster snapshot is created before
     *         the DB cluster is deleted. If true is specified, no
     *         DB cluster snapshot is created. If false is
     *         specified, a DB cluster snapshot is created before the DB cluster
     *         is deleted.  
     *         
     *         You must specify a FinalDBSnapshotIdentifier
     *         parameter if SkipFinalSnapshot is false
     *         .
     *         
     *          
     *         
     *         Default: false
     */
    public Boolean isSkipFinalSnapshot() {
        return this.skipFinalSnapshot;
    }
    /**
     * 
     * The DB cluster snapshot identifier of the new DB cluster snapshot 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 alphanumeric characters
     * 
     *  
     * - 
     * 
     * First character must be a letter
     * 
     *  
     * - 
     * 
     * Cannot end with a hyphen or contain two consecutive hyphens
     * 
     *  
     * 
     * 
     * @param finalDBSnapshotIdentifier
     *        The DB cluster snapshot identifier of the new DB cluster snapshot
     *        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 alphanumeric characters
     *        
     *         
     *        - 
     *        
     *        First character must be a letter
     *        
     *         
     *        - 
     *        
     *        Cannot end with a hyphen or contain two consecutive hyphens
     *        
     *         
     */
    public void setFinalDBSnapshotIdentifier(String finalDBSnapshotIdentifier) {
        this.finalDBSnapshotIdentifier = finalDBSnapshotIdentifier;
    }
    /**
     * 
     * The DB cluster snapshot identifier of the new DB cluster snapshot 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 alphanumeric characters
     * 
     *  
     * - 
     * 
     * First character must be a letter
     * 
     *  
     * - 
     * 
     * Cannot end with a hyphen or contain two consecutive hyphens
     * 
     *  
     * 
     * 
     * @return The DB cluster snapshot identifier of the new DB cluster snapshot
     *         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 alphanumeric characters
     *         
     *          
     *         - 
     *         
     *         First character must be a letter
     *         
     *          
     *         - 
     *         
     *         Cannot end with a hyphen or contain two consecutive hyphens
     *         
     *          
     */
    public String getFinalDBSnapshotIdentifier() {
        return this.finalDBSnapshotIdentifier;
    }
    /**
     * 
     * The DB cluster snapshot identifier of the new DB cluster snapshot 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 alphanumeric characters
     * 
     *  
     * - 
     * 
     * First character must be a letter
     * 
     *  
     * - 
     * 
     * Cannot end with a hyphen or contain two consecutive hyphens
     * 
     *  
     * 
     * 
     * @param finalDBSnapshotIdentifier
     *        The DB cluster snapshot identifier of the new DB cluster snapshot
     *        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 alphanumeric characters
     *        
     *         
     *        - 
     *        
     *        First character must be a letter
     *        
     *         
     *        - 
     *        
     *        Cannot end with a hyphen or contain two consecutive hyphens
     *        
     *         
     * @return Returns a reference to this object so that method calls can be
     *         chained together.
     */
    public DeleteDBClusterRequest withFinalDBSnapshotIdentifier(
            String finalDBSnapshotIdentifier) {
        setFinalDBSnapshotIdentifier(finalDBSnapshotIdentifier);
        return this;
    }
    /**
     * Returns a string representation of this object; useful for testing and
     * debugging.
     *
     * @return A string representation of this object.
     *
     * @see java.lang.Object#toString()
     */
    @Override
    public String toString() {
        StringBuilder sb = new StringBuilder();
        sb.append("{");
        if (getDBClusterIdentifier() != null)
            sb.append("DBClusterIdentifier: " + getDBClusterIdentifier() + ",");
        if (getSkipFinalSnapshot() != null)
            sb.append("SkipFinalSnapshot: " + getSkipFinalSnapshot() + ",");
        if (getFinalDBSnapshotIdentifier() != null)
            sb.append("FinalDBSnapshotIdentifier: "
                    + 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 DeleteDBClusterRequest == false)
            return false;
        DeleteDBClusterRequest other = (DeleteDBClusterRequest) obj;
        if (other.getDBClusterIdentifier() == null
                ^ this.getDBClusterIdentifier() == null)
            return false;
        if (other.getDBClusterIdentifier() != null
                && other.getDBClusterIdentifier().equals(
                        this.getDBClusterIdentifier()) == 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
                + ((getDBClusterIdentifier() == null) ? 0
                        : getDBClusterIdentifier().hashCode());
        hashCode = prime
                * hashCode
                + ((getSkipFinalSnapshot() == null) ? 0
                        : getSkipFinalSnapshot().hashCode());
        hashCode = prime
                * hashCode
                + ((getFinalDBSnapshotIdentifier() == null) ? 0
                        : getFinalDBSnapshotIdentifier().hashCode());
        return hashCode;
    }
    @Override
    public DeleteDBClusterRequest clone() {
        return (DeleteDBClusterRequest) super.clone();
    }
}