/* * 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 component. *
* * @see AWS API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class CreateComponentData implements Serializable, Cloneable, StructuredPojo { /** ** The name of the component *
*/ private String name; /** ** The unique ID of the component in its original source system, such as Figma. *
*/ private String sourceId; /** ** The component type. This can be an Amplify custom UI component or another custom component. *
*/ private String componentType; /** ** Describes the component's properties. *
*/ private java.util.Map* A list of child components that are instances of the main component. *
*/ private java.util.List* A list of the unique variants of this component. *
*/ private java.util.List* Describes the component properties that can be overriden to customize an instance of the component. *
*/ private java.util.Map* The data binding information for the component's properties. *
*/ private java.util.Map* The data binding configuration for customizing a component's properties. Use this for a collection component. *
*/ private java.util.Map* One or more key-value pairs to use when tagging the component data. *
*/ private java.util.Map* The event configuration for the component. Use for the workflow feature in Amplify Studio that allows you to bind * events and actions to components. *
*/ private java.util.Map* The schema version of the component when it was imported. *
*/ private String schemaVersion; /** ** The name of the component *
* * @param name * The name of the component */ public void setName(String name) { this.name = name; } /** ** The name of the component *
* * @return The name of the component */ public String getName() { return this.name; } /** ** The name of the component *
* * @param name * The name of the component * @return Returns a reference to this object so that method calls can be chained together. */ public CreateComponentData withName(String name) { setName(name); return this; } /** ** The unique ID of the component in its original source system, such as Figma. *
* * @param sourceId * The unique ID of the component in its original source system, such as Figma. */ public void setSourceId(String sourceId) { this.sourceId = sourceId; } /** ** The unique ID of the component in its original source system, such as Figma. *
* * @return The unique ID of the component in its original source system, such as Figma. */ public String getSourceId() { return this.sourceId; } /** ** The unique ID of the component in its original source system, such as Figma. *
* * @param sourceId * The unique ID of the component in its original source system, such as Figma. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateComponentData withSourceId(String sourceId) { setSourceId(sourceId); return this; } /** ** The component type. This can be an Amplify custom UI component or another custom component. *
* * @param componentType * The component type. This can be an Amplify custom UI component or another custom component. */ public void setComponentType(String componentType) { this.componentType = componentType; } /** ** The component type. This can be an Amplify custom UI component or another custom component. *
* * @return The component type. This can be an Amplify custom UI component or another custom component. */ public String getComponentType() { return this.componentType; } /** ** The component type. This can be an Amplify custom UI component or another custom component. *
* * @param componentType * The component type. This can be an Amplify custom UI component or another custom component. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateComponentData withComponentType(String componentType) { setComponentType(componentType); return this; } /** ** Describes the component's properties. *
* * @return Describes the component's properties. */ public java.util.Map* Describes the component's properties. *
* * @param properties * Describes the component's properties. */ public void setProperties(java.util.Map* Describes the component's properties. *
* * @param properties * Describes the component's properties. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateComponentData withProperties(java.util.Map* A list of child components that are instances of the main component. *
* * @return A list of child components that are instances of the main component. */ public java.util.List* A list of child components that are instances of the main component. *
* * @param children * A list of child components that are instances of the main component. */ public void setChildren(java.util.Collection* A list of child components that are instances of the main component. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setChildren(java.util.Collection)} or {@link #withChildren(java.util.Collection)} if you want to override * the existing values. *
* * @param children * A list of child components that are instances of the main component. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateComponentData withChildren(ComponentChild... children) { if (this.children == null) { setChildren(new java.util.ArrayList* A list of child components that are instances of the main component. *
* * @param children * A list of child components that are instances of the main component. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateComponentData withChildren(java.util.Collection* A list of the unique variants of this component. *
* * @return A list of the unique variants of this component. */ public java.util.List* A list of the unique variants of this component. *
* * @param variants * A list of the unique variants of this component. */ public void setVariants(java.util.Collection* A list of the unique variants of this component. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setVariants(java.util.Collection)} or {@link #withVariants(java.util.Collection)} if you want to override * the existing values. *
* * @param variants * A list of the unique variants of this component. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateComponentData withVariants(ComponentVariant... variants) { if (this.variants == null) { setVariants(new java.util.ArrayList* A list of the unique variants of this component. *
* * @param variants * A list of the unique variants of this component. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateComponentData withVariants(java.util.Collection* Describes the component properties that can be overriden to customize an instance of the component. *
* * @return Describes the component properties that can be overriden to customize an instance of the component. */ public java.util.Map* Describes the component properties that can be overriden to customize an instance of the component. *
* * @param overrides * Describes the component properties that can be overriden to customize an instance of the component. */ public void setOverrides(java.util.Map* Describes the component properties that can be overriden to customize an instance of the component. *
* * @param overrides * Describes the component properties that can be overriden to customize an instance of the component. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateComponentData withOverrides(java.util.Map* The data binding information for the component's properties. *
* * @return The data binding information for the component's properties. */ public java.util.Map* The data binding information for the component's properties. *
* * @param bindingProperties * The data binding information for the component's properties. */ public void setBindingProperties(java.util.Map* The data binding information for the component's properties. *
* * @param bindingProperties * The data binding information for the component's properties. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateComponentData withBindingProperties(java.util.Map* The data binding configuration for customizing a component's properties. Use this for a collection component. *
* * @return The data binding configuration for customizing a component's properties. Use this for a collection * component. */ public java.util.Map* The data binding configuration for customizing a component's properties. Use this for a collection component. *
* * @param collectionProperties * The data binding configuration for customizing a component's properties. Use this for a collection * component. */ public void setCollectionProperties(java.util.Map* The data binding configuration for customizing a component's properties. Use this for a collection component. *
* * @param collectionProperties * The data binding configuration for customizing a component's properties. Use this for a collection * component. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateComponentData withCollectionProperties(java.util.Map* One or more key-value pairs to use when tagging the component data. *
* * @return One or more key-value pairs to use when tagging the component data. */ public java.util.Map* One or more key-value pairs to use when tagging the component data. *
* * @param tags * One or more key-value pairs to use when tagging the component data. */ public void setTags(java.util.Map* One or more key-value pairs to use when tagging the component data. *
* * @param tags * One or more key-value pairs to use when tagging the component data. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateComponentData withTags(java.util.Map* The event configuration for the component. Use for the workflow feature in Amplify Studio that allows you to bind * events and actions to components. *
* * @return The event configuration for the component. Use for the workflow feature in Amplify Studio that allows you * to bind events and actions to components. */ public java.util.Map* The event configuration for the component. Use for the workflow feature in Amplify Studio that allows you to bind * events and actions to components. *
* * @param events * The event configuration for the component. Use for the workflow feature in Amplify Studio that allows you * to bind events and actions to components. */ public void setEvents(java.util.Map* The event configuration for the component. Use for the workflow feature in Amplify Studio that allows you to bind * events and actions to components. *
* * @param events * The event configuration for the component. Use for the workflow feature in Amplify Studio that allows you * to bind events and actions to components. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateComponentData withEvents(java.util.Map* The schema version of the component when it was imported. *
* * @param schemaVersion * The schema version of the component when it was imported. */ public void setSchemaVersion(String schemaVersion) { this.schemaVersion = schemaVersion; } /** ** The schema version of the component when it was imported. *
* * @return The schema version of the component when it was imported. */ public String getSchemaVersion() { return this.schemaVersion; } /** ** The schema version of the component when it was imported. *
* * @param schemaVersion * The schema version of the component when it was imported. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateComponentData withSchemaVersion(String schemaVersion) { setSchemaVersion(schemaVersion); 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 (getSourceId() != null) sb.append("SourceId: ").append(getSourceId()).append(","); if (getComponentType() != null) sb.append("ComponentType: ").append(getComponentType()).append(","); if (getProperties() != null) sb.append("Properties: ").append(getProperties()).append(","); if (getChildren() != null) sb.append("Children: ").append(getChildren()).append(","); if (getVariants() != null) sb.append("Variants: ").append(getVariants()).append(","); if (getOverrides() != null) sb.append("Overrides: ").append(getOverrides()).append(","); if (getBindingProperties() != null) sb.append("BindingProperties: ").append(getBindingProperties()).append(","); if (getCollectionProperties() != null) sb.append("CollectionProperties: ").append(getCollectionProperties()).append(","); if (getTags() != null) sb.append("Tags: ").append(getTags()).append(","); if (getEvents() != null) sb.append("Events: ").append(getEvents()).append(","); if (getSchemaVersion() != null) sb.append("SchemaVersion: ").append(getSchemaVersion()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof CreateComponentData == false) return false; CreateComponentData other = (CreateComponentData) obj; if (other.getName() == null ^ this.getName() == null) return false; if (other.getName() != null && other.getName().equals(this.getName()) == false) return false; if (other.getSourceId() == null ^ this.getSourceId() == null) return false; if (other.getSourceId() != null && other.getSourceId().equals(this.getSourceId()) == false) return false; if (other.getComponentType() == null ^ this.getComponentType() == null) return false; if (other.getComponentType() != null && other.getComponentType().equals(this.getComponentType()) == false) return false; if (other.getProperties() == null ^ this.getProperties() == null) return false; if (other.getProperties() != null && other.getProperties().equals(this.getProperties()) == false) return false; if (other.getChildren() == null ^ this.getChildren() == null) return false; if (other.getChildren() != null && other.getChildren().equals(this.getChildren()) == false) return false; if (other.getVariants() == null ^ this.getVariants() == null) return false; if (other.getVariants() != null && other.getVariants().equals(this.getVariants()) == false) return false; if (other.getOverrides() == null ^ this.getOverrides() == null) return false; if (other.getOverrides() != null && other.getOverrides().equals(this.getOverrides()) == false) return false; if (other.getBindingProperties() == null ^ this.getBindingProperties() == null) return false; if (other.getBindingProperties() != null && other.getBindingProperties().equals(this.getBindingProperties()) == false) return false; if (other.getCollectionProperties() == null ^ this.getCollectionProperties() == null) return false; if (other.getCollectionProperties() != null && other.getCollectionProperties().equals(this.getCollectionProperties()) == 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.getEvents() == null ^ this.getEvents() == null) return false; if (other.getEvents() != null && other.getEvents().equals(this.getEvents()) == false) return false; if (other.getSchemaVersion() == null ^ this.getSchemaVersion() == null) return false; if (other.getSchemaVersion() != null && other.getSchemaVersion().equals(this.getSchemaVersion()) == 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 + ((getSourceId() == null) ? 0 : getSourceId().hashCode()); hashCode = prime * hashCode + ((getComponentType() == null) ? 0 : getComponentType().hashCode()); hashCode = prime * hashCode + ((getProperties() == null) ? 0 : getProperties().hashCode()); hashCode = prime * hashCode + ((getChildren() == null) ? 0 : getChildren().hashCode()); hashCode = prime * hashCode + ((getVariants() == null) ? 0 : getVariants().hashCode()); hashCode = prime * hashCode + ((getOverrides() == null) ? 0 : getOverrides().hashCode()); hashCode = prime * hashCode + ((getBindingProperties() == null) ? 0 : getBindingProperties().hashCode()); hashCode = prime * hashCode + ((getCollectionProperties() == null) ? 0 : getCollectionProperties().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); hashCode = prime * hashCode + ((getEvents() == null) ? 0 : getEvents().hashCode()); hashCode = prime * hashCode + ((getSchemaVersion() == null) ? 0 : getSchemaVersion().hashCode()); return hashCode; } @Override public CreateComponentData clone() { try { return (CreateComponentData) 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.CreateComponentDataMarshaller.getInstance().marshall(this, protocolMarshaller); } }