/* * 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.amplifyuibuilder.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *
* Represents all of the information that is required to create a form. *
* * @see AWS * API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class CreateFormData implements Serializable, Cloneable, StructuredPojo { /** ** The name of the form. *
*/ private String name; /** ** The type of data source to use to create the form. *
*/ private FormDataTypeConfig dataType; /** ** Specifies whether to perform a create or update action on the form. *
*/ private String formActionType; /** ** The configuration information for the form's fields. *
*/ private java.util.Map* The configuration for the form's style. *
*/ private FormStyle style; /** ** The configuration information for the visual helper elements for the form. These elements are not associated with * any data. *
*/ private java.util.Map* The schema version of the form. *
*/ private String schemaVersion; /** *
* The FormCTA
object that stores the call to action configuration for the form.
*
* One or more key-value pairs to use when tagging the form data. *
*/ private java.util.Map* Specifies an icon or decoration to display on the form. *
*/ private String labelDecorator; /** ** The name of the form. *
* * @param name * The name of the form. */ public void setName(String name) { this.name = name; } /** ** The name of the form. *
* * @return The name of the form. */ public String getName() { return this.name; } /** ** The name of the form. *
* * @param name * The name of the form. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateFormData withName(String name) { setName(name); return this; } /** ** The type of data source to use to create the form. *
* * @param dataType * The type of data source to use to create the form. */ public void setDataType(FormDataTypeConfig dataType) { this.dataType = dataType; } /** ** The type of data source to use to create the form. *
* * @return The type of data source to use to create the form. */ public FormDataTypeConfig getDataType() { return this.dataType; } /** ** The type of data source to use to create the form. *
* * @param dataType * The type of data source to use to create the form. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateFormData withDataType(FormDataTypeConfig dataType) { setDataType(dataType); return this; } /** ** Specifies whether to perform a create or update action on the form. *
* * @param formActionType * Specifies whether to perform a create or update action on the form. * @see FormActionType */ public void setFormActionType(String formActionType) { this.formActionType = formActionType; } /** ** Specifies whether to perform a create or update action on the form. *
* * @return Specifies whether to perform a create or update action on the form. * @see FormActionType */ public String getFormActionType() { return this.formActionType; } /** ** Specifies whether to perform a create or update action on the form. *
* * @param formActionType * Specifies whether to perform a create or update action on the form. * @return Returns a reference to this object so that method calls can be chained together. * @see FormActionType */ public CreateFormData withFormActionType(String formActionType) { setFormActionType(formActionType); return this; } /** ** Specifies whether to perform a create or update action on the form. *
* * @param formActionType * Specifies whether to perform a create or update action on the form. * @return Returns a reference to this object so that method calls can be chained together. * @see FormActionType */ public CreateFormData withFormActionType(FormActionType formActionType) { this.formActionType = formActionType.toString(); return this; } /** ** The configuration information for the form's fields. *
* * @return The configuration information for the form's fields. */ public java.util.Map* The configuration information for the form's fields. *
* * @param fields * The configuration information for the form's fields. */ public void setFields(java.util.Map* The configuration information for the form's fields. *
* * @param fields * The configuration information for the form's fields. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateFormData withFields(java.util.Map* The configuration for the form's style. *
* * @param style * The configuration for the form's style. */ public void setStyle(FormStyle style) { this.style = style; } /** ** The configuration for the form's style. *
* * @return The configuration for the form's style. */ public FormStyle getStyle() { return this.style; } /** ** The configuration for the form's style. *
* * @param style * The configuration for the form's style. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateFormData withStyle(FormStyle style) { setStyle(style); return this; } /** ** The configuration information for the visual helper elements for the form. These elements are not associated with * any data. *
* * @return The configuration information for the visual helper elements for the form. These elements are not * associated with any data. */ public java.util.Map* The configuration information for the visual helper elements for the form. These elements are not associated with * any data. *
* * @param sectionalElements * The configuration information for the visual helper elements for the form. These elements are not * associated with any data. */ public void setSectionalElements(java.util.Map* The configuration information for the visual helper elements for the form. These elements are not associated with * any data. *
* * @param sectionalElements * The configuration information for the visual helper elements for the form. These elements are not * associated with any data. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateFormData withSectionalElements(java.util.Map* The schema version of the form. *
* * @param schemaVersion * The schema version of the form. */ public void setSchemaVersion(String schemaVersion) { this.schemaVersion = schemaVersion; } /** ** The schema version of the form. *
* * @return The schema version of the form. */ public String getSchemaVersion() { return this.schemaVersion; } /** ** The schema version of the form. *
* * @param schemaVersion * The schema version of the form. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateFormData withSchemaVersion(String schemaVersion) { setSchemaVersion(schemaVersion); return this; } /** *
* The FormCTA
object that stores the call to action configuration for the form.
*
FormCTA
object that stores the call to action configuration for the form.
*/
public void setCta(FormCTA cta) {
this.cta = cta;
}
/**
*
* The FormCTA
object that stores the call to action configuration for the form.
*
FormCTA
object that stores the call to action configuration for the form.
*/
public FormCTA getCta() {
return this.cta;
}
/**
*
* The FormCTA
object that stores the call to action configuration for the form.
*
FormCTA
object that stores the call to action configuration for the form.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateFormData withCta(FormCTA cta) {
setCta(cta);
return this;
}
/**
* * One or more key-value pairs to use when tagging the form data. *
* * @return One or more key-value pairs to use when tagging the form data. */ public java.util.Map* One or more key-value pairs to use when tagging the form data. *
* * @param tags * One or more key-value pairs to use when tagging the form data. */ public void setTags(java.util.Map* One or more key-value pairs to use when tagging the form data. *
* * @param tags * One or more key-value pairs to use when tagging the form data. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateFormData withTags(java.util.Map* Specifies an icon or decoration to display on the form. *
* * @param labelDecorator * Specifies an icon or decoration to display on the form. * @see LabelDecorator */ public void setLabelDecorator(String labelDecorator) { this.labelDecorator = labelDecorator; } /** ** Specifies an icon or decoration to display on the form. *
* * @return Specifies an icon or decoration to display on the form. * @see LabelDecorator */ public String getLabelDecorator() { return this.labelDecorator; } /** ** Specifies an icon or decoration to display on the form. *
* * @param labelDecorator * Specifies an icon or decoration to display on the form. * @return Returns a reference to this object so that method calls can be chained together. * @see LabelDecorator */ public CreateFormData withLabelDecorator(String labelDecorator) { setLabelDecorator(labelDecorator); return this; } /** ** Specifies an icon or decoration to display on the form. *
* * @param labelDecorator * Specifies an icon or decoration to display on the form. * @return Returns a reference to this object so that method calls can be chained together. * @see LabelDecorator */ public CreateFormData withLabelDecorator(LabelDecorator labelDecorator) { this.labelDecorator = labelDecorator.toString(); 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 (getName() != null) sb.append("Name: ").append(getName()).append(","); if (getDataType() != null) sb.append("DataType: ").append(getDataType()).append(","); if (getFormActionType() != null) sb.append("FormActionType: ").append(getFormActionType()).append(","); if (getFields() != null) sb.append("Fields: ").append(getFields()).append(","); if (getStyle() != null) sb.append("Style: ").append(getStyle()).append(","); if (getSectionalElements() != null) sb.append("SectionalElements: ").append(getSectionalElements()).append(","); if (getSchemaVersion() != null) sb.append("SchemaVersion: ").append(getSchemaVersion()).append(","); if (getCta() != null) sb.append("Cta: ").append(getCta()).append(","); if (getTags() != null) sb.append("Tags: ").append(getTags()).append(","); if (getLabelDecorator() != null) sb.append("LabelDecorator: ").append(getLabelDecorator()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof CreateFormData == false) return false; CreateFormData other = (CreateFormData) obj; if (other.getName() == null ^ this.getName() == null) return false; if (other.getName() != null && other.getName().equals(this.getName()) == false) return false; if (other.getDataType() == null ^ this.getDataType() == null) return false; if (other.getDataType() != null && other.getDataType().equals(this.getDataType()) == false) return false; if (other.getFormActionType() == null ^ this.getFormActionType() == null) return false; if (other.getFormActionType() != null && other.getFormActionType().equals(this.getFormActionType()) == false) return false; if (other.getFields() == null ^ this.getFields() == null) return false; if (other.getFields() != null && other.getFields().equals(this.getFields()) == false) return false; if (other.getStyle() == null ^ this.getStyle() == null) return false; if (other.getStyle() != null && other.getStyle().equals(this.getStyle()) == false) return false; if (other.getSectionalElements() == null ^ this.getSectionalElements() == null) return false; if (other.getSectionalElements() != null && other.getSectionalElements().equals(this.getSectionalElements()) == false) return false; if (other.getSchemaVersion() == null ^ this.getSchemaVersion() == null) return false; if (other.getSchemaVersion() != null && other.getSchemaVersion().equals(this.getSchemaVersion()) == false) return false; if (other.getCta() == null ^ this.getCta() == null) return false; if (other.getCta() != null && other.getCta().equals(this.getCta()) == false) return false; if (other.getTags() == null ^ this.getTags() == null) return false; if (other.getTags() != null && other.getTags().equals(this.getTags()) == false) return false; if (other.getLabelDecorator() == null ^ this.getLabelDecorator() == null) return false; if (other.getLabelDecorator() != null && other.getLabelDecorator().equals(this.getLabelDecorator()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode()); hashCode = prime * hashCode + ((getDataType() == null) ? 0 : getDataType().hashCode()); hashCode = prime * hashCode + ((getFormActionType() == null) ? 0 : getFormActionType().hashCode()); hashCode = prime * hashCode + ((getFields() == null) ? 0 : getFields().hashCode()); hashCode = prime * hashCode + ((getStyle() == null) ? 0 : getStyle().hashCode()); hashCode = prime * hashCode + ((getSectionalElements() == null) ? 0 : getSectionalElements().hashCode()); hashCode = prime * hashCode + ((getSchemaVersion() == null) ? 0 : getSchemaVersion().hashCode()); hashCode = prime * hashCode + ((getCta() == null) ? 0 : getCta().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); hashCode = prime * hashCode + ((getLabelDecorator() == null) ? 0 : getLabelDecorator().hashCode()); return hashCode; } @Override public CreateFormData clone() { try { return (CreateFormData) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.amplifyuibuilder.model.transform.CreateFormDataMarshaller.getInstance().marshall(this, protocolMarshaller); } }