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

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

/*
 * Copyright 2010-2014 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;

/**
 * Container for the parameters to the {@link com.amazonaws.services.rds.AmazonRDS#createOptionGroup(CreateOptionGroupRequest) CreateOptionGroup operation}.
 * 

* Creates a new option group. You can create up to 20 option groups. *

* * @see com.amazonaws.services.rds.AmazonRDS#createOptionGroup(CreateOptionGroupRequest) */ public class CreateOptionGroupRequest extends AmazonWebServiceRequest implements Serializable { /** * 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; /** * A list of tags. */ private com.amazonaws.internal.ListWithAutoConstructFlag 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 * * @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 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 */ 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 *

* Returns a reference to this object so that method calls can be chained together. * * @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 A reference to this updated object so that method calls can be chained * together. */ public CreateOptionGroupRequest withOptionGroupName(String optionGroupName) { this.optionGroupName = optionGroupName; return this; } /** * 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 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. */ public void setEngineName(String engineName) { this.engineName = engineName; } /** * Specifies the name of the engine that this option group should be * associated with. *

* Returns a reference to this object so that method calls can be chained together. * * @param engineName Specifies the name of the engine that this option group should be * associated with. * * @return A reference to this updated object so that method calls can be chained * together. */ public CreateOptionGroupRequest withEngineName(String engineName) { this.engineName = engineName; return this; } /** * 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 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. */ public void setMajorEngineVersion(String majorEngineVersion) { this.majorEngineVersion = majorEngineVersion; } /** * Specifies the major version of the engine that this option group * should be associated with. *

* Returns a reference to this object so that method calls can be chained together. * * @param majorEngineVersion Specifies the major version of the engine that this option group * should be associated with. * * @return A reference to this updated object so that method calls can be chained * together. */ public CreateOptionGroupRequest withMajorEngineVersion(String majorEngineVersion) { this.majorEngineVersion = majorEngineVersion; return this; } /** * The description of the option group. * * @return The description of the option group. */ public String getOptionGroupDescription() { return optionGroupDescription; } /** * 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. *

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

* Returns a reference to this object so that method calls can be chained together. * * @param tags A list of tags. * * @return A reference to this updated object so that method calls can be chained * together. */ public CreateOptionGroupRequest withTags(Tag... tags) { if (getTags() == null) setTags(new java.util.ArrayList(tags.length)); for (Tag value : tags) { getTags().add(value); } return this; } /** * A list of tags. *

* Returns a reference to this object so that method calls can be chained together. * * @param tags A list of tags. * * @return A reference to this updated object so that method calls can be chained * together. */ public CreateOptionGroupRequest withTags(java.util.Collection tags) { if (tags == null) { this.tags = null; } else { com.amazonaws.internal.ListWithAutoConstructFlag tagsCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(tags.size()); tagsCopy.addAll(tags); this.tags = tagsCopy; } 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 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 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; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy