All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.rds.model.CreateOptionGroupRequest Maven / Gradle / Ivy

Go to download

The AWS SDK for Java with support for OSGi. The AWS SDK for Java provides Java APIs for building software on AWS' cost-effective, scalable, and reliable infrastructure products. The AWS Java SDK allows developers to code against APIs for all of Amazon's infrastructure web services (Amazon S3, Amazon EC2, Amazon SQS, Amazon Relational Database Service, Amazon AutoScaling, etc).

There is a newer version: 1.11.60
Show newest version
/*
 * Copyright 2011-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 CreateOptionGroupRequest extends AmazonWebServiceRequest implements Serializable, Cloneable { /** *

* Specifies the name of the option group to be created. *

*

* Constraints: *

*
    *
  • *

    * Must be 1 to 255 alphanumeric characters or hyphens *

    *
  • *
  • *

    * First character must be a letter *

    *
  • *
  • *

    * Cannot end with a hyphen or contain two consecutive hyphens *

    *
  • *
*

* Example: myoptiongroup *

*/ private String optionGroupName; /** *

* Specifies the name of the engine that this option group should be * associated with. *

*/ private String engineName; /** *

* Specifies the major version of the engine that this option group should * be associated with. *

*/ private String majorEngineVersion; /** *

* The description of the option group. *

*/ private String optionGroupDescription; private com.amazonaws.internal.SdkInternalList tags; /** *

* Specifies the name of the option group to be created. *

*

* Constraints: *

*
    *
  • *

    * Must be 1 to 255 alphanumeric characters or hyphens *

    *
  • *
  • *

    * First character must be a letter *

    *
  • *
  • *

    * Cannot end with a hyphen or contain two consecutive hyphens *

    *
  • *
*

* Example: myoptiongroup *

* * @param optionGroupName * Specifies the name of the option group to be created.

*

* Constraints: *

*
    *
  • *

    * Must be 1 to 255 alphanumeric characters or hyphens *

    *
  • *
  • *

    * First character must be a letter *

    *
  • *
  • *

    * Cannot end with a hyphen or contain two consecutive hyphens *

    *
  • *
*

* Example: myoptiongroup */ public void setOptionGroupName(String optionGroupName) { this.optionGroupName = optionGroupName; } /** *

* Specifies the name of the option group to be created. *

*

* Constraints: *

*
    *
  • *

    * Must be 1 to 255 alphanumeric characters or hyphens *

    *
  • *
  • *

    * First character must be a letter *

    *
  • *
  • *

    * Cannot end with a hyphen or contain two consecutive hyphens *

    *
  • *
*

* Example: myoptiongroup *

* * @return Specifies the name of the option group to be created.

*

* Constraints: *

*
    *
  • *

    * Must be 1 to 255 alphanumeric characters or hyphens *

    *
  • *
  • *

    * First character must be a letter *

    *
  • *
  • *

    * Cannot end with a hyphen or contain two consecutive hyphens *

    *
  • *
*

* Example: myoptiongroup */ public String getOptionGroupName() { return this.optionGroupName; } /** *

* Specifies the name of the option group to be created. *

*

* Constraints: *

*
    *
  • *

    * Must be 1 to 255 alphanumeric characters or hyphens *

    *
  • *
  • *

    * First character must be a letter *

    *
  • *
  • *

    * Cannot end with a hyphen or contain two consecutive hyphens *

    *
  • *
*

* Example: myoptiongroup *

* * @param optionGroupName * Specifies the name of the option group to be created.

*

* Constraints: *

*
    *
  • *

    * Must be 1 to 255 alphanumeric characters or hyphens *

    *
  • *
  • *

    * First character must be a letter *

    *
  • *
  • *

    * Cannot end with a hyphen or contain two consecutive hyphens *

    *
  • *
*

* Example: myoptiongroup * @return Returns a reference to this object so that method calls can be * chained together. */ public CreateOptionGroupRequest withOptionGroupName(String optionGroupName) { setOptionGroupName(optionGroupName); return this; } /** *

* Specifies the name of the engine that this option group should be * associated with. *

* * @param engineName * Specifies the name of the engine that this option group should be * associated with. */ public void setEngineName(String engineName) { this.engineName = engineName; } /** *

* Specifies the name of the engine that this option group should be * associated with. *

* * @return Specifies the name of the engine that this option group should be * associated with. */ public String getEngineName() { return this.engineName; } /** *

* Specifies the name of the engine that this option group should be * associated with. *

* * @param engineName * Specifies the name of the engine that this option group should be * associated with. * @return Returns a reference to this object so that method calls can be * chained together. */ public CreateOptionGroupRequest withEngineName(String engineName) { setEngineName(engineName); return this; } /** *

* Specifies the major version of the engine that this option group should * be associated with. *

* * @param majorEngineVersion * Specifies the major version of the engine that this option group * should be associated with. */ public void setMajorEngineVersion(String majorEngineVersion) { this.majorEngineVersion = majorEngineVersion; } /** *

* Specifies the major version of the engine that this option group should * be associated with. *

* * @return Specifies the major version of the engine that this option group * should be associated with. */ public String getMajorEngineVersion() { return this.majorEngineVersion; } /** *

* Specifies the major version of the engine that this option group should * be associated with. *

* * @param majorEngineVersion * Specifies the major version of the engine that this option group * should be associated with. * @return Returns a reference to this object so that method calls can be * chained together. */ public CreateOptionGroupRequest withMajorEngineVersion( String majorEngineVersion) { setMajorEngineVersion(majorEngineVersion); return this; } /** *

* The description of the option group. *

* * @param optionGroupDescription * The description of the option group. */ public void setOptionGroupDescription(String optionGroupDescription) { this.optionGroupDescription = optionGroupDescription; } /** *

* The description of the option group. *

* * @return The description of the option group. */ public String getOptionGroupDescription() { return this.optionGroupDescription; } /** *

* The description of the option group. *

* * @param optionGroupDescription * The description of the option group. * @return Returns a reference to this object so that method calls can be * chained together. */ public CreateOptionGroupRequest withOptionGroupDescription( String optionGroupDescription) { setOptionGroupDescription(optionGroupDescription); return this; } /** * @return */ public java.util.List getTags() { if (tags == null) { tags = new com.amazonaws.internal.SdkInternalList(); } return tags; } /** * @param tags */ public void setTags(java.util.Collection tags) { if (tags == null) { this.tags = null; return; } this.tags = new com.amazonaws.internal.SdkInternalList(tags); } /** *

* NOTE: This method appends the values to the existing list (if * any). Use {@link #setTags(java.util.Collection)} or * {@link #withTags(java.util.Collection)} if you want to override the * existing values. *

* * @param tags * @return Returns a reference to this object so that method calls can be * chained together. */ public CreateOptionGroupRequest withTags(Tag... tags) { if (this.tags == null) { setTags(new com.amazonaws.internal.SdkInternalList(tags.length)); } for (Tag ele : tags) { this.tags.add(ele); } return this; } /** * @param tags * @return Returns a reference to this object so that method calls can be * chained together. */ public CreateOptionGroupRequest withTags(java.util.Collection tags) { setTags(tags); 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 (getOptionGroupName() != null) sb.append("OptionGroupName: " + getOptionGroupName() + ","); if (getEngineName() != null) sb.append("EngineName: " + getEngineName() + ","); if (getMajorEngineVersion() != null) sb.append("MajorEngineVersion: " + getMajorEngineVersion() + ","); if (getOptionGroupDescription() != null) sb.append("OptionGroupDescription: " + getOptionGroupDescription() + ","); if (getTags() != null) sb.append("Tags: " + getTags()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof CreateOptionGroupRequest == false) return false; CreateOptionGroupRequest other = (CreateOptionGroupRequest) obj; if (other.getOptionGroupName() == null ^ this.getOptionGroupName() == null) return false; if (other.getOptionGroupName() != null && other.getOptionGroupName().equals(this.getOptionGroupName()) == false) return false; if (other.getEngineName() == null ^ this.getEngineName() == null) return false; if (other.getEngineName() != null && other.getEngineName().equals(this.getEngineName()) == false) return false; if (other.getMajorEngineVersion() == null ^ this.getMajorEngineVersion() == null) return false; if (other.getMajorEngineVersion() != null && other.getMajorEngineVersion().equals( this.getMajorEngineVersion()) == false) return false; if (other.getOptionGroupDescription() == null ^ this.getOptionGroupDescription() == null) return false; if (other.getOptionGroupDescription() != null && other.getOptionGroupDescription().equals( this.getOptionGroupDescription()) == false) return false; if (other.getTags() == null ^ this.getTags() == null) return false; if (other.getTags() != null && other.getTags().equals(this.getTags()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getOptionGroupName() == null) ? 0 : getOptionGroupName() .hashCode()); hashCode = prime * hashCode + ((getEngineName() == null) ? 0 : getEngineName().hashCode()); hashCode = prime * hashCode + ((getMajorEngineVersion() == null) ? 0 : getMajorEngineVersion().hashCode()); hashCode = prime * hashCode + ((getOptionGroupDescription() == null) ? 0 : getOptionGroupDescription().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); return hashCode; } @Override public CreateOptionGroupRequest clone() { return (CreateOptionGroupRequest) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy