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

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

* The identifier or ARN for the source DB parameter group. For information * about creating an ARN, see Constructing an RDS Amazon Resource Name (ARN). *

*

* Constraints: *

*
    *
  • *

    * Must specify a valid DB parameter group. *

    *
  • *
  • *

    * If the source DB parameter group is in the same region as the copy, * specify a valid DB parameter group identifier, for example * my-db-param-group, or a valid ARN. *

    *
  • *
  • *

    * If the source DB parameter group is in a different region than the copy, * specify a valid DB parameter group ARN, for example * arn:aws:rds:us-west-2:123456789012:pg:special-parameters. *

    *
  • *
*/ private String sourceDBParameterGroupIdentifier; /** *

* The identifier for the copied DB parameter group. *

*

* Constraints: *

*
    *
  • *

    * Cannot be null, empty, or blank *

    *
  • *
  • *

    * Must contain from 1 to 255 alphanumeric characters or hyphens *

    *
  • *
  • *

    * First character must be a letter *

    *
  • *
  • *

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

    *
  • *
*

* Example: my-db-parameter-group *

*/ private String targetDBParameterGroupIdentifier; /** *

* A description for the copied DB parameter group. *

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

* The identifier or ARN for the source DB parameter group. For information * about creating an ARN, see Constructing an RDS Amazon Resource Name (ARN). *

*

* Constraints: *

*
    *
  • *

    * Must specify a valid DB parameter group. *

    *
  • *
  • *

    * If the source DB parameter group is in the same region as the copy, * specify a valid DB parameter group identifier, for example * my-db-param-group, or a valid ARN. *

    *
  • *
  • *

    * If the source DB parameter group is in a different region than the copy, * specify a valid DB parameter group ARN, for example * arn:aws:rds:us-west-2:123456789012:pg:special-parameters. *

    *
  • *
* * @param sourceDBParameterGroupIdentifier * The identifier or ARN for the source DB parameter group. For * information about creating an ARN, see Constructing an RDS Amazon Resource Name (ARN).

*

* Constraints: *

*
    *
  • *

    * Must specify a valid DB parameter group. *

    *
  • *
  • *

    * If the source DB parameter group is in the same region as the * copy, specify a valid DB parameter group identifier, for example * my-db-param-group, or a valid ARN. *

    *
  • *
  • *

    * If the source DB parameter group is in a different region than the * copy, specify a valid DB parameter group ARN, for example * arn:aws:rds:us-west-2:123456789012:pg:special-parameters * . *

    *
  • */ public void setSourceDBParameterGroupIdentifier( String sourceDBParameterGroupIdentifier) { this.sourceDBParameterGroupIdentifier = sourceDBParameterGroupIdentifier; } /** *

    * The identifier or ARN for the source DB parameter group. For information * about creating an ARN, see Constructing an RDS Amazon Resource Name (ARN). *

    *

    * Constraints: *

    *
      *
    • *

      * Must specify a valid DB parameter group. *

      *
    • *
    • *

      * If the source DB parameter group is in the same region as the copy, * specify a valid DB parameter group identifier, for example * my-db-param-group, or a valid ARN. *

      *
    • *
    • *

      * If the source DB parameter group is in a different region than the copy, * specify a valid DB parameter group ARN, for example * arn:aws:rds:us-west-2:123456789012:pg:special-parameters. *

      *
    • *
    * * @return The identifier or ARN for the source DB parameter group. For * information about creating an ARN, see Constructing an RDS Amazon Resource Name (ARN).

    *

    * Constraints: *

    *
      *
    • *

      * Must specify a valid DB parameter group. *

      *
    • *
    • *

      * If the source DB parameter group is in the same region as the * copy, specify a valid DB parameter group identifier, for example * my-db-param-group, or a valid ARN. *

      *
    • *
    • *

      * If the source DB parameter group is in a different region than * the copy, specify a valid DB parameter group ARN, for example * arn:aws:rds:us-west-2:123456789012:pg:special-parameters * . *

      *
    • */ public String getSourceDBParameterGroupIdentifier() { return this.sourceDBParameterGroupIdentifier; } /** *

      * The identifier or ARN for the source DB parameter group. For information * about creating an ARN, see Constructing an RDS Amazon Resource Name (ARN). *

      *

      * Constraints: *

      *
        *
      • *

        * Must specify a valid DB parameter group. *

        *
      • *
      • *

        * If the source DB parameter group is in the same region as the copy, * specify a valid DB parameter group identifier, for example * my-db-param-group, or a valid ARN. *

        *
      • *
      • *

        * If the source DB parameter group is in a different region than the copy, * specify a valid DB parameter group ARN, for example * arn:aws:rds:us-west-2:123456789012:pg:special-parameters. *

        *
      • *
      * * @param sourceDBParameterGroupIdentifier * The identifier or ARN for the source DB parameter group. For * information about creating an ARN, see Constructing an RDS Amazon Resource Name (ARN).

      *

      * Constraints: *

      *
        *
      • *

        * Must specify a valid DB parameter group. *

        *
      • *
      • *

        * If the source DB parameter group is in the same region as the * copy, specify a valid DB parameter group identifier, for example * my-db-param-group, or a valid ARN. *

        *
      • *
      • *

        * If the source DB parameter group is in a different region than the * copy, specify a valid DB parameter group ARN, for example * arn:aws:rds:us-west-2:123456789012:pg:special-parameters * . *

        *
      • * @return Returns a reference to this object so that method calls can be * chained together. */ public CopyDBParameterGroupRequest withSourceDBParameterGroupIdentifier( String sourceDBParameterGroupIdentifier) { setSourceDBParameterGroupIdentifier(sourceDBParameterGroupIdentifier); return this; } /** *

        * The identifier for the copied DB parameter group. *

        *

        * Constraints: *

        *
          *
        • *

          * Cannot be null, empty, or blank *

          *
        • *
        • *

          * Must contain from 1 to 255 alphanumeric characters or hyphens *

          *
        • *
        • *

          * First character must be a letter *

          *
        • *
        • *

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

          *
        • *
        *

        * Example: my-db-parameter-group *

        * * @param targetDBParameterGroupIdentifier * The identifier for the copied DB parameter group.

        *

        * Constraints: *

        *
          *
        • *

          * Cannot be null, empty, or blank *

          *
        • *
        • *

          * Must contain from 1 to 255 alphanumeric characters or hyphens *

          *
        • *
        • *

          * First character must be a letter *

          *
        • *
        • *

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

          *
        • *
        *

        * Example: my-db-parameter-group */ public void setTargetDBParameterGroupIdentifier( String targetDBParameterGroupIdentifier) { this.targetDBParameterGroupIdentifier = targetDBParameterGroupIdentifier; } /** *

        * The identifier for the copied DB parameter group. *

        *

        * Constraints: *

        *
          *
        • *

          * Cannot be null, empty, or blank *

          *
        • *
        • *

          * Must contain from 1 to 255 alphanumeric characters or hyphens *

          *
        • *
        • *

          * First character must be a letter *

          *
        • *
        • *

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

          *
        • *
        *

        * Example: my-db-parameter-group *

        * * @return The identifier for the copied DB parameter group.

        *

        * Constraints: *

        *
          *
        • *

          * Cannot be null, empty, or blank *

          *
        • *
        • *

          * Must contain from 1 to 255 alphanumeric characters or hyphens *

          *
        • *
        • *

          * First character must be a letter *

          *
        • *
        • *

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

          *
        • *
        *

        * Example: my-db-parameter-group */ public String getTargetDBParameterGroupIdentifier() { return this.targetDBParameterGroupIdentifier; } /** *

        * The identifier for the copied DB parameter group. *

        *

        * Constraints: *

        *
          *
        • *

          * Cannot be null, empty, or blank *

          *
        • *
        • *

          * Must contain from 1 to 255 alphanumeric characters or hyphens *

          *
        • *
        • *

          * First character must be a letter *

          *
        • *
        • *

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

          *
        • *
        *

        * Example: my-db-parameter-group *

        * * @param targetDBParameterGroupIdentifier * The identifier for the copied DB parameter group.

        *

        * Constraints: *

        *
          *
        • *

          * Cannot be null, empty, or blank *

          *
        • *
        • *

          * Must contain from 1 to 255 alphanumeric characters or hyphens *

          *
        • *
        • *

          * First character must be a letter *

          *
        • *
        • *

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

          *
        • *
        *

        * Example: my-db-parameter-group * @return Returns a reference to this object so that method calls can be * chained together. */ public CopyDBParameterGroupRequest withTargetDBParameterGroupIdentifier( String targetDBParameterGroupIdentifier) { setTargetDBParameterGroupIdentifier(targetDBParameterGroupIdentifier); return this; } /** *

        * A description for the copied DB parameter group. *

        * * @param targetDBParameterGroupDescription * A description for the copied DB parameter group. */ public void setTargetDBParameterGroupDescription( String targetDBParameterGroupDescription) { this.targetDBParameterGroupDescription = targetDBParameterGroupDescription; } /** *

        * A description for the copied DB parameter group. *

        * * @return A description for the copied DB parameter group. */ public String getTargetDBParameterGroupDescription() { return this.targetDBParameterGroupDescription; } /** *

        * A description for the copied DB parameter group. *

        * * @param targetDBParameterGroupDescription * A description for the copied DB parameter group. * @return Returns a reference to this object so that method calls can be * chained together. */ public CopyDBParameterGroupRequest withTargetDBParameterGroupDescription( String targetDBParameterGroupDescription) { setTargetDBParameterGroupDescription(targetDBParameterGroupDescription); 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 CopyDBParameterGroupRequest 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 CopyDBParameterGroupRequest 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 (getSourceDBParameterGroupIdentifier() != null) sb.append("SourceDBParameterGroupIdentifier: " + getSourceDBParameterGroupIdentifier() + ","); if (getTargetDBParameterGroupIdentifier() != null) sb.append("TargetDBParameterGroupIdentifier: " + getTargetDBParameterGroupIdentifier() + ","); if (getTargetDBParameterGroupDescription() != null) sb.append("TargetDBParameterGroupDescription: " + getTargetDBParameterGroupDescription() + ","); 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 CopyDBParameterGroupRequest == false) return false; CopyDBParameterGroupRequest other = (CopyDBParameterGroupRequest) obj; if (other.getSourceDBParameterGroupIdentifier() == null ^ this.getSourceDBParameterGroupIdentifier() == null) return false; if (other.getSourceDBParameterGroupIdentifier() != null && other.getSourceDBParameterGroupIdentifier().equals( this.getSourceDBParameterGroupIdentifier()) == false) return false; if (other.getTargetDBParameterGroupIdentifier() == null ^ this.getTargetDBParameterGroupIdentifier() == null) return false; if (other.getTargetDBParameterGroupIdentifier() != null && other.getTargetDBParameterGroupIdentifier().equals( this.getTargetDBParameterGroupIdentifier()) == false) return false; if (other.getTargetDBParameterGroupDescription() == null ^ this.getTargetDBParameterGroupDescription() == null) return false; if (other.getTargetDBParameterGroupDescription() != null && other.getTargetDBParameterGroupDescription().equals( this.getTargetDBParameterGroupDescription()) == 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 + ((getSourceDBParameterGroupIdentifier() == null) ? 0 : getSourceDBParameterGroupIdentifier().hashCode()); hashCode = prime * hashCode + ((getTargetDBParameterGroupIdentifier() == null) ? 0 : getTargetDBParameterGroupIdentifier().hashCode()); hashCode = prime * hashCode + ((getTargetDBParameterGroupDescription() == null) ? 0 : getTargetDBParameterGroupDescription().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); return hashCode; } @Override public CopyDBParameterGroupRequest clone() { return (CopyDBParameterGroupRequest) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy