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.FormBindingElement

Description

 
Synopsis

Documentation

data FormBindingElement Source #

Describes how to bind a component property to form data.

See: newFormBindingElement smart constructor.

Constructors

FormBindingElement' 

Fields

  • element :: Text

    The name of the component to retrieve a value from.

  • property :: Text

    The property to retrieve a value from.

Instances

Instances details
FromJSON FormBindingElement Source # 
Instance details

Defined in Amazonka.AmplifyUiBuilder.Types.FormBindingElement

ToJSON FormBindingElement Source # 
Instance details

Defined in Amazonka.AmplifyUiBuilder.Types.FormBindingElement

Generic FormBindingElement Source # 
Instance details

Defined in Amazonka.AmplifyUiBuilder.Types.FormBindingElement

Associated Types

type Rep FormBindingElement :: Type -> Type #

Read FormBindingElement Source # 
Instance details

Defined in Amazonka.AmplifyUiBuilder.Types.FormBindingElement

Show FormBindingElement Source # 
Instance details

Defined in Amazonka.AmplifyUiBuilder.Types.FormBindingElement

NFData FormBindingElement Source # 
Instance details

Defined in Amazonka.AmplifyUiBuilder.Types.FormBindingElement

Methods

rnf :: FormBindingElement -> () #

Eq FormBindingElement Source # 
Instance details

Defined in Amazonka.AmplifyUiBuilder.Types.FormBindingElement

Hashable FormBindingElement Source # 
Instance details

Defined in Amazonka.AmplifyUiBuilder.Types.FormBindingElement

type Rep FormBindingElement Source # 
Instance details

Defined in Amazonka.AmplifyUiBuilder.Types.FormBindingElement

type Rep FormBindingElement = D1 ('MetaData "FormBindingElement" "Amazonka.AmplifyUiBuilder.Types.FormBindingElement" "amazonka-amplifyuibuilder-2.0-KN0MRaPu7dZCAXr3ruBTcC" 'False) (C1 ('MetaCons "FormBindingElement'" 'PrefixI 'True) (S1 ('MetaSel ('Just "element") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "property") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newFormBindingElement Source #

Create a value of FormBindingElement 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:element:FormBindingElement', formBindingElement_element - The name of the component to retrieve a value from.

$sel:property:FormBindingElement', formBindingElement_property - The property to retrieve a value from.

formBindingElement_element :: Lens' FormBindingElement Text Source #

The name of the component to retrieve a value from.

formBindingElement_property :: Lens' FormBindingElement Text Source #

The property to retrieve a value from.