/* * 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; /** *
* A nested UI configuration within a parent Component
.
*
* The type of the child component. *
*/ private String componentType; /** ** The name of the child component. *
*/ private String name; /** *
* Describes the properties of the child component. You can't specify tags
as a valid property for
* properties
.
*
* The list of ComponentChild
instances for this component.
*
* Describes the events that can be raised on the child component. Use for the workflow feature in Amplify Studio * that allows you to bind events and actions to components. *
*/ private java.util.Map* The unique ID of the child component in its original source system, such as Figma. *
*/ private String sourceId; /** ** The type of the child component. *
* * @param componentType * The type of the child component. */ public void setComponentType(String componentType) { this.componentType = componentType; } /** ** The type of the child component. *
* * @return The type of the child component. */ public String getComponentType() { return this.componentType; } /** ** The type of the child component. *
* * @param componentType * The type of the child component. * @return Returns a reference to this object so that method calls can be chained together. */ public ComponentChild withComponentType(String componentType) { setComponentType(componentType); return this; } /** ** The name of the child component. *
* * @param name * The name of the child component. */ public void setName(String name) { this.name = name; } /** ** The name of the child component. *
* * @return The name of the child component. */ public String getName() { return this.name; } /** ** The name of the child component. *
* * @param name * The name of the child component. * @return Returns a reference to this object so that method calls can be chained together. */ public ComponentChild withName(String name) { setName(name); return this; } /** *
* Describes the properties of the child component. You can't specify tags
as a valid property for
* properties
.
*
tags
as a valid property
* for properties
.
*/
public java.util.Map
* Describes the properties of the child component. You can't specify tags
as a valid property for
* properties
.
*
tags
as a valid property
* for properties
.
*/
public void setProperties(java.util.Map
* Describes the properties of the child component. You can't specify tags
as a valid property for
* properties
.
*
tags
as a valid property
* for properties
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ComponentChild withProperties(java.util.Map
* The list of ComponentChild
instances for this component.
*
ComponentChild
instances for this component.
*/
public java.util.List
* The list of ComponentChild
instances for this component.
*
ComponentChild
instances for this component.
*/
public void setChildren(java.util.Collection
* The list of ComponentChild
instances for this 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 * The list ofComponentChild
instances for this component.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ComponentChild withChildren(ComponentChild... children) {
if (this.children == null) {
setChildren(new java.util.ArrayList
* The list of ComponentChild
instances for this component.
*
ComponentChild
instances for this component.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ComponentChild withChildren(java.util.Collection* Describes the events that can be raised on the child component. Use for the workflow feature in Amplify Studio * that allows you to bind events and actions to components. *
* * @return Describes the events that can be raised on the child component. Use for the workflow feature in Amplify * Studio that allows you to bind events and actions to components. */ public java.util.Map* Describes the events that can be raised on the child component. Use for the workflow feature in Amplify Studio * that allows you to bind events and actions to components. *
* * @param events * Describes the events that can be raised on the child 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* Describes the events that can be raised on the child component. Use for the workflow feature in Amplify Studio * that allows you to bind events and actions to components. *
* * @param events * Describes the events that can be raised on the child 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 ComponentChild withEvents(java.util.Map* The unique ID of the child component in its original source system, such as Figma. *
* * @param sourceId * The unique ID of the child component in its original source system, such as Figma. */ public void setSourceId(String sourceId) { this.sourceId = sourceId; } /** ** The unique ID of the child component in its original source system, such as Figma. *
* * @return The unique ID of the child component in its original source system, such as Figma. */ public String getSourceId() { return this.sourceId; } /** ** The unique ID of the child component in its original source system, such as Figma. *
* * @param sourceId * The unique ID of the child 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 ComponentChild withSourceId(String sourceId) { setSourceId(sourceId); 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 (getComponentType() != null) sb.append("ComponentType: ").append(getComponentType()).append(","); if (getName() != null) sb.append("Name: ").append(getName()).append(","); if (getProperties() != null) sb.append("Properties: ").append(getProperties()).append(","); if (getChildren() != null) sb.append("Children: ").append(getChildren()).append(","); if (getEvents() != null) sb.append("Events: ").append(getEvents()).append(","); if (getSourceId() != null) sb.append("SourceId: ").append(getSourceId()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ComponentChild == false) return false; ComponentChild other = (ComponentChild) obj; if (other.getComponentType() == null ^ this.getComponentType() == null) return false; if (other.getComponentType() != null && other.getComponentType().equals(this.getComponentType()) == false) return false; if (other.getName() == null ^ this.getName() == null) return false; if (other.getName() != null && other.getName().equals(this.getName()) == 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.getEvents() == null ^ this.getEvents() == null) return false; if (other.getEvents() != null && other.getEvents().equals(this.getEvents()) == false) return false; if (other.getSourceId() == null ^ this.getSourceId() == null) return false; if (other.getSourceId() != null && other.getSourceId().equals(this.getSourceId()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getComponentType() == null) ? 0 : getComponentType().hashCode()); hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode()); hashCode = prime * hashCode + ((getProperties() == null) ? 0 : getProperties().hashCode()); hashCode = prime * hashCode + ((getChildren() == null) ? 0 : getChildren().hashCode()); hashCode = prime * hashCode + ((getEvents() == null) ? 0 : getEvents().hashCode()); hashCode = prime * hashCode + ((getSourceId() == null) ? 0 : getSourceId().hashCode()); return hashCode; } @Override public ComponentChild clone() { try { return (ComponentChild) 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.ComponentChildMarshaller.getInstance().marshall(this, protocolMarshaller); } }