/* * 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 ModifyDBSnapshotRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** *

* The identifier of the DB snapshot to modify. *

*/ private String dBSnapshotIdentifier; /** *

* The engine version to upgrade the DB snapshot to. *

*

* The following are the database engines and engine versions that are available when you upgrade a DB snapshot. *

*

* MySQL *

* *

* Oracle *

* *

* PostgreSQL *

*

* For the list of engine versions that are available for upgrading a DB snapshot, see Upgrading the PostgreSQL DB Engine for Amazon RDS. *

*/ private String engineVersion; /** *

* The option group to identify with the upgraded DB snapshot. *

*

* You can specify this parameter when you upgrade an Oracle DB snapshot. The same option group considerations apply * when upgrading a DB snapshot as when upgrading a DB instance. For more information, see Option group considerations in the Amazon RDS User Guide. *

*/ private String optionGroupName; /** *

* The identifier of the DB snapshot to modify. *

* * @param dBSnapshotIdentifier * The identifier of the DB snapshot to modify. */ public void setDBSnapshotIdentifier(String dBSnapshotIdentifier) { this.dBSnapshotIdentifier = dBSnapshotIdentifier; } /** *

* The identifier of the DB snapshot to modify. *

* * @return The identifier of the DB snapshot to modify. */ public String getDBSnapshotIdentifier() { return this.dBSnapshotIdentifier; } /** *

* The identifier of the DB snapshot to modify. *

* * @param dBSnapshotIdentifier * The identifier of the DB snapshot to modify. * @return Returns a reference to this object so that method calls can be chained together. */ public ModifyDBSnapshotRequest withDBSnapshotIdentifier(String dBSnapshotIdentifier) { setDBSnapshotIdentifier(dBSnapshotIdentifier); return this; } /** *

* The engine version to upgrade the DB snapshot to. *

*

* The following are the database engines and engine versions that are available when you upgrade a DB snapshot. *

*

* MySQL *

* *

* Oracle *

* *

* PostgreSQL *

*

* For the list of engine versions that are available for upgrading a DB snapshot, see Upgrading the PostgreSQL DB Engine for Amazon RDS. *

* * @param engineVersion * The engine version to upgrade the DB snapshot to.

*

* The following are the database engines and engine versions that are available when you upgrade a DB * snapshot. *

*

* MySQL *

* *

* Oracle *

* *

* PostgreSQL *

*

* For the list of engine versions that are available for upgrading a DB snapshot, see Upgrading the PostgreSQL DB Engine for Amazon RDS. */ public void setEngineVersion(String engineVersion) { this.engineVersion = engineVersion; } /** *

* The engine version to upgrade the DB snapshot to. *

*

* The following are the database engines and engine versions that are available when you upgrade a DB snapshot. *

*

* MySQL *

* *

* Oracle *

* *

* PostgreSQL *

*

* For the list of engine versions that are available for upgrading a DB snapshot, see Upgrading the PostgreSQL DB Engine for Amazon RDS. *

* * @return The engine version to upgrade the DB snapshot to.

*

* The following are the database engines and engine versions that are available when you upgrade a DB * snapshot. *

*

* MySQL *

* *

* Oracle *

* *

* PostgreSQL *

*

* For the list of engine versions that are available for upgrading a DB snapshot, see Upgrading the PostgreSQL DB Engine for Amazon RDS. */ public String getEngineVersion() { return this.engineVersion; } /** *

* The engine version to upgrade the DB snapshot to. *

*

* The following are the database engines and engine versions that are available when you upgrade a DB snapshot. *

*

* MySQL *

* *

* Oracle *

* *

* PostgreSQL *

*

* For the list of engine versions that are available for upgrading a DB snapshot, see Upgrading the PostgreSQL DB Engine for Amazon RDS. *

* * @param engineVersion * The engine version to upgrade the DB snapshot to.

*

* The following are the database engines and engine versions that are available when you upgrade a DB * snapshot. *

*

* MySQL *

* *

* Oracle *

* *

* PostgreSQL *

*

* For the list of engine versions that are available for upgrading a DB snapshot, see Upgrading the PostgreSQL DB Engine for Amazon RDS. * @return Returns a reference to this object so that method calls can be chained together. */ public ModifyDBSnapshotRequest withEngineVersion(String engineVersion) { setEngineVersion(engineVersion); return this; } /** *

* The option group to identify with the upgraded DB snapshot. *

*

* You can specify this parameter when you upgrade an Oracle DB snapshot. The same option group considerations apply * when upgrading a DB snapshot as when upgrading a DB instance. For more information, see Option group considerations in the Amazon RDS User Guide. *

* * @param optionGroupName * The option group to identify with the upgraded DB snapshot.

*

* You can specify this parameter when you upgrade an Oracle DB snapshot. The same option group * considerations apply when upgrading a DB snapshot as when upgrading a DB instance. For more information, * see Option group considerations in the Amazon RDS User Guide. */ public void setOptionGroupName(String optionGroupName) { this.optionGroupName = optionGroupName; } /** *

* The option group to identify with the upgraded DB snapshot. *

*

* You can specify this parameter when you upgrade an Oracle DB snapshot. The same option group considerations apply * when upgrading a DB snapshot as when upgrading a DB instance. For more information, see Option group considerations in the Amazon RDS User Guide. *

* * @return The option group to identify with the upgraded DB snapshot.

*

* You can specify this parameter when you upgrade an Oracle DB snapshot. The same option group * considerations apply when upgrading a DB snapshot as when upgrading a DB instance. For more information, * see Option group considerations in the Amazon RDS User Guide. */ public String getOptionGroupName() { return this.optionGroupName; } /** *

* The option group to identify with the upgraded DB snapshot. *

*

* You can specify this parameter when you upgrade an Oracle DB snapshot. The same option group considerations apply * when upgrading a DB snapshot as when upgrading a DB instance. For more information, see Option group considerations in the Amazon RDS User Guide. *

* * @param optionGroupName * The option group to identify with the upgraded DB snapshot.

*

* You can specify this parameter when you upgrade an Oracle DB snapshot. The same option group * considerations apply when upgrading a DB snapshot as when upgrading a DB instance. For more information, * see Option group considerations in the Amazon RDS User Guide. * @return Returns a reference to this object so that method calls can be chained together. */ public ModifyDBSnapshotRequest withOptionGroupName(String optionGroupName) { setOptionGroupName(optionGroupName); 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 (getDBSnapshotIdentifier() != null) sb.append("DBSnapshotIdentifier: ").append(getDBSnapshotIdentifier()).append(","); if (getEngineVersion() != null) sb.append("EngineVersion: ").append(getEngineVersion()).append(","); if (getOptionGroupName() != null) sb.append("OptionGroupName: ").append(getOptionGroupName()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ModifyDBSnapshotRequest == false) return false; ModifyDBSnapshotRequest other = (ModifyDBSnapshotRequest) obj; if (other.getDBSnapshotIdentifier() == null ^ this.getDBSnapshotIdentifier() == null) return false; if (other.getDBSnapshotIdentifier() != null && other.getDBSnapshotIdentifier().equals(this.getDBSnapshotIdentifier()) == false) return false; if (other.getEngineVersion() == null ^ this.getEngineVersion() == null) return false; if (other.getEngineVersion() != null && other.getEngineVersion().equals(this.getEngineVersion()) == false) return false; if (other.getOptionGroupName() == null ^ this.getOptionGroupName() == null) return false; if (other.getOptionGroupName() != null && other.getOptionGroupName().equals(this.getOptionGroupName()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getDBSnapshotIdentifier() == null) ? 0 : getDBSnapshotIdentifier().hashCode()); hashCode = prime * hashCode + ((getEngineVersion() == null) ? 0 : getEngineVersion().hashCode()); hashCode = prime * hashCode + ((getOptionGroupName() == null) ? 0 : getOptionGroupName().hashCode()); return hashCode; } @Override public ModifyDBSnapshotRequest clone() { return (ModifyDBSnapshotRequest) super.clone(); } }