* The label doesn't meet the requirements. For information about parameter label requirements, see Labeling * parameters in the Amazon Web Services Systems Manager User Guide. *
*/ private com.amazonaws.internal.SdkInternalList* The version of the parameter that has been labeled. *
*/ private Long parameterVersion; /** ** The label doesn't meet the requirements. For information about parameter label requirements, see Labeling * parameters in the Amazon Web Services Systems Manager User Guide. *
* * @return The label doesn't meet the requirements. For information about parameter label requirements, see Labeling parameters in the Amazon Web Services Systems Manager User Guide. */ public java.util.List* The label doesn't meet the requirements. For information about parameter label requirements, see Labeling * parameters in the Amazon Web Services Systems Manager User Guide. *
* * @param invalidLabels * The label doesn't meet the requirements. For information about parameter label requirements, see Labeling * parameters in the Amazon Web Services Systems Manager User Guide. */ public void setInvalidLabels(java.util.Collection* The label doesn't meet the requirements. For information about parameter label requirements, see Labeling * parameters in the Amazon Web Services Systems Manager User Guide. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setInvalidLabels(java.util.Collection)} or {@link #withInvalidLabels(java.util.Collection)} if you want * to override the existing values. *
* * @param invalidLabels * The label doesn't meet the requirements. For information about parameter label requirements, see Labeling * parameters in the Amazon Web Services Systems Manager User Guide. * @return Returns a reference to this object so that method calls can be chained together. */ public LabelParameterVersionResult withInvalidLabels(String... invalidLabels) { if (this.invalidLabels == null) { setInvalidLabels(new com.amazonaws.internal.SdkInternalList* The label doesn't meet the requirements. For information about parameter label requirements, see Labeling * parameters in the Amazon Web Services Systems Manager User Guide. *
* * @param invalidLabels * The label doesn't meet the requirements. For information about parameter label requirements, see Labeling * parameters in the Amazon Web Services Systems Manager User Guide. * @return Returns a reference to this object so that method calls can be chained together. */ public LabelParameterVersionResult withInvalidLabels(java.util.Collection* The version of the parameter that has been labeled. *
* * @param parameterVersion * The version of the parameter that has been labeled. */ public void setParameterVersion(Long parameterVersion) { this.parameterVersion = parameterVersion; } /** ** The version of the parameter that has been labeled. *
* * @return The version of the parameter that has been labeled. */ public Long getParameterVersion() { return this.parameterVersion; } /** ** The version of the parameter that has been labeled. *
* * @param parameterVersion * The version of the parameter that has been labeled. * @return Returns a reference to this object so that method calls can be chained together. */ public LabelParameterVersionResult withParameterVersion(Long parameterVersion) { setParameterVersion(parameterVersion); 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 (getInvalidLabels() != null) sb.append("InvalidLabels: ").append(getInvalidLabels()).append(","); if (getParameterVersion() != null) sb.append("ParameterVersion: ").append(getParameterVersion()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof LabelParameterVersionResult == false) return false; LabelParameterVersionResult other = (LabelParameterVersionResult) obj; if (other.getInvalidLabels() == null ^ this.getInvalidLabels() == null) return false; if (other.getInvalidLabels() != null && other.getInvalidLabels().equals(this.getInvalidLabels()) == false) return false; if (other.getParameterVersion() == null ^ this.getParameterVersion() == null) return false; if (other.getParameterVersion() != null && other.getParameterVersion().equals(this.getParameterVersion()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getInvalidLabels() == null) ? 0 : getInvalidLabels().hashCode()); hashCode = prime * hashCode + ((getParameterVersion() == null) ? 0 : getParameterVersion().hashCode()); return hashCode; } @Override public LabelParameterVersionResult clone() { try { return (LabelParameterVersionResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }