amazonka-amplifyuibuilder-2.0: Amazon Amplify UI Builder SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.AmplifyUiBuilder.Types.ComponentChild

Description

 
Synopsis

Documentation

data ComponentChild Source #

A nested UI configuration within a parent Component.

See: newComponentChild smart constructor.

Constructors

ComponentChild' 

Fields

Instances

Instances details
FromJSON ComponentChild Source # 
Instance details

Defined in Amazonka.AmplifyUiBuilder.Types.ComponentChild

ToJSON ComponentChild Source # 
Instance details

Defined in Amazonka.AmplifyUiBuilder.Types.ComponentChild

Generic ComponentChild Source # 
Instance details

Defined in Amazonka.AmplifyUiBuilder.Types.ComponentChild

Associated Types

type Rep ComponentChild :: Type -> Type #

Read ComponentChild Source # 
Instance details

Defined in Amazonka.AmplifyUiBuilder.Types.ComponentChild

Show ComponentChild Source # 
Instance details

Defined in Amazonka.AmplifyUiBuilder.Types.ComponentChild

NFData ComponentChild Source # 
Instance details

Defined in Amazonka.AmplifyUiBuilder.Types.ComponentChild

Methods

rnf :: ComponentChild -> () #

Eq ComponentChild Source # 
Instance details

Defined in Amazonka.AmplifyUiBuilder.Types.ComponentChild

Hashable ComponentChild Source # 
Instance details

Defined in Amazonka.AmplifyUiBuilder.Types.ComponentChild

type Rep ComponentChild Source # 
Instance details

Defined in Amazonka.AmplifyUiBuilder.Types.ComponentChild

type Rep ComponentChild = D1 ('MetaData "ComponentChild" "Amazonka.AmplifyUiBuilder.Types.ComponentChild" "amazonka-amplifyuibuilder-2.0-KN0MRaPu7dZCAXr3ruBTcC" 'False) (C1 ('MetaCons "ComponentChild'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "children") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [ComponentChild])) :*: (S1 ('MetaSel ('Just "events") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (HashMap Text ComponentEvent))) :*: S1 ('MetaSel ('Just "sourceId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: (S1 ('MetaSel ('Just "componentType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "properties") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (HashMap Text ComponentProperty))))))

newComponentChild Source #

Create a value of ComponentChild with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:children:ComponentChild', componentChild_children - The list of ComponentChild instances for this component.

$sel:events:ComponentChild', componentChild_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.

$sel:sourceId:ComponentChild', componentChild_sourceId - The unique ID of the child component in its original source system, such as Figma.

$sel:componentType:ComponentChild', componentChild_componentType - The type of the child component.

$sel:name:ComponentChild', componentChild_name - The name of the child component.

$sel:properties:ComponentChild', componentChild_properties - Describes the properties of the child component. You can't specify tags as a valid property for properties.

componentChild_children :: Lens' ComponentChild (Maybe [ComponentChild]) Source #

The list of ComponentChild instances for this component.

componentChild_events :: Lens' ComponentChild (Maybe (HashMap Text ComponentEvent)) Source #

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.

componentChild_sourceId :: Lens' ComponentChild (Maybe Text) Source #

The unique ID of the child component in its original source system, such as Figma.

componentChild_componentType :: Lens' ComponentChild Text Source #

The type of the child component.

componentChild_name :: Lens' ComponentChild Text Source #

The name of the child component.

componentChild_properties :: Lens' ComponentChild (HashMap Text ComponentProperty) Source #

Describes the properties of the child component. You can't specify tags as a valid property for properties.