Values.ComponentChildA nested UI configuration within a parent Component.
type nonrec t = {componentType : String_.t;The type of the child component.
*)name : String_.t;The name of the child component.
*)properties : ComponentProperties.t;Describes the properties of the child component. You can't specify tags as a valid property for properties.
*)children : ComponentChildList.t option;The list of ComponentChild instances for this component.
*)events : ComponentEvents.t option;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.
*)sourceId : String_.t option;The unique ID of the child component in its original source system, such as Figma.
*)}val make :
?children:ComponentChildList.t ->
?events:ComponentEvents.t ->
?sourceId:String_.t ->
componentType:String_.t ->
name:String_.t ->
properties:ComponentProperties.t ->
unit ->
t