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

* The namespace to create a snapshot for. *

*/ private String namespaceName; /** *

* How long to retain the created snapshot. *

*/ private Integer retentionPeriod; /** *

* The name of the snapshot. *

*/ private String snapshotName; /** *

* An array of Tag * objects to associate with the snapshot. *

*/ private java.util.List tags; /** *

* The namespace to create a snapshot for. *

* * @param namespaceName * The namespace to create a snapshot for. */ public void setNamespaceName(String namespaceName) { this.namespaceName = namespaceName; } /** *

* The namespace to create a snapshot for. *

* * @return The namespace to create a snapshot for. */ public String getNamespaceName() { return this.namespaceName; } /** *

* The namespace to create a snapshot for. *

* * @param namespaceName * The namespace to create a snapshot for. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateSnapshotRequest withNamespaceName(String namespaceName) { setNamespaceName(namespaceName); return this; } /** *

* How long to retain the created snapshot. *

* * @param retentionPeriod * How long to retain the created snapshot. */ public void setRetentionPeriod(Integer retentionPeriod) { this.retentionPeriod = retentionPeriod; } /** *

* How long to retain the created snapshot. *

* * @return How long to retain the created snapshot. */ public Integer getRetentionPeriod() { return this.retentionPeriod; } /** *

* How long to retain the created snapshot. *

* * @param retentionPeriod * How long to retain the created snapshot. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateSnapshotRequest withRetentionPeriod(Integer retentionPeriod) { setRetentionPeriod(retentionPeriod); return this; } /** *

* The name of the snapshot. *

* * @param snapshotName * The name of the snapshot. */ public void setSnapshotName(String snapshotName) { this.snapshotName = snapshotName; } /** *

* The name of the snapshot. *

* * @return The name of the snapshot. */ public String getSnapshotName() { return this.snapshotName; } /** *

* The name of the snapshot. *

* * @param snapshotName * The name of the snapshot. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateSnapshotRequest withSnapshotName(String snapshotName) { setSnapshotName(snapshotName); return this; } /** *

* An array of Tag * objects to associate with the snapshot. *

* * @return An array of Tag objects * to associate with the snapshot. */ public java.util.List getTags() { return tags; } /** *

* An array of Tag * objects to associate with the snapshot. *

* * @param tags * An array of Tag * objects to associate with the snapshot. */ public void setTags(java.util.Collection tags) { if (tags == null) { this.tags = null; return; } this.tags = new java.util.ArrayList(tags); } /** *

* An array of Tag * objects to associate with the snapshot. *

*

* 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 * An array of Tag * objects to associate with the snapshot. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateSnapshotRequest withTags(Tag... tags) { if (this.tags == null) { setTags(new java.util.ArrayList(tags.length)); } for (Tag ele : tags) { this.tags.add(ele); } return this; } /** *

* An array of Tag * objects to associate with the snapshot. *

* * @param tags * An array of Tag * objects to associate with the snapshot. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateSnapshotRequest withTags(java.util.Collection tags) { setTags(tags); 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 (getNamespaceName() != null) sb.append("NamespaceName: ").append(getNamespaceName()).append(","); if (getRetentionPeriod() != null) sb.append("RetentionPeriod: ").append(getRetentionPeriod()).append(","); if (getSnapshotName() != null) sb.append("SnapshotName: ").append(getSnapshotName()).append(","); if (getTags() != null) sb.append("Tags: ").append(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 CreateSnapshotRequest == false) return false; CreateSnapshotRequest other = (CreateSnapshotRequest) obj; if (other.getNamespaceName() == null ^ this.getNamespaceName() == null) return false; if (other.getNamespaceName() != null && other.getNamespaceName().equals(this.getNamespaceName()) == false) return false; if (other.getRetentionPeriod() == null ^ this.getRetentionPeriod() == null) return false; if (other.getRetentionPeriod() != null && other.getRetentionPeriod().equals(this.getRetentionPeriod()) == false) return false; if (other.getSnapshotName() == null ^ this.getSnapshotName() == null) return false; if (other.getSnapshotName() != null && other.getSnapshotName().equals(this.getSnapshotName()) == 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 + ((getNamespaceName() == null) ? 0 : getNamespaceName().hashCode()); hashCode = prime * hashCode + ((getRetentionPeriod() == null) ? 0 : getRetentionPeriod().hashCode()); hashCode = prime * hashCode + ((getSnapshotName() == null) ? 0 : getSnapshotName().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); return hashCode; } @Override public CreateSnapshotRequest clone() { return (CreateSnapshotRequest) super.clone(); } }