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

Description

 
Synopsis

Documentation

data FieldPosition Source #

Describes the field position.

See: newFieldPosition smart constructor.

Constructors

FieldPosition' 

Fields

  • below :: Maybe Text

    The field position is below the field specified by the string.

  • fixed :: Maybe FixedPosition

    The field position is fixed and doesn't change in relation to other fields.

  • rightOf :: Maybe Text

    The field position is to the right of the field specified by the string.

Instances

Instances details
FromJSON FieldPosition Source # 
Instance details

Defined in Amazonka.AmplifyUiBuilder.Types.FieldPosition

ToJSON FieldPosition Source # 
Instance details

Defined in Amazonka.AmplifyUiBuilder.Types.FieldPosition

Generic FieldPosition Source # 
Instance details

Defined in Amazonka.AmplifyUiBuilder.Types.FieldPosition

Associated Types

type Rep FieldPosition :: Type -> Type #

Read FieldPosition Source # 
Instance details

Defined in Amazonka.AmplifyUiBuilder.Types.FieldPosition

Show FieldPosition Source # 
Instance details

Defined in Amazonka.AmplifyUiBuilder.Types.FieldPosition

NFData FieldPosition Source # 
Instance details

Defined in Amazonka.AmplifyUiBuilder.Types.FieldPosition

Methods

rnf :: FieldPosition -> () #

Eq FieldPosition Source # 
Instance details

Defined in Amazonka.AmplifyUiBuilder.Types.FieldPosition

Hashable FieldPosition Source # 
Instance details

Defined in Amazonka.AmplifyUiBuilder.Types.FieldPosition

type Rep FieldPosition Source # 
Instance details

Defined in Amazonka.AmplifyUiBuilder.Types.FieldPosition

type Rep FieldPosition = D1 ('MetaData "FieldPosition" "Amazonka.AmplifyUiBuilder.Types.FieldPosition" "amazonka-amplifyuibuilder-2.0-KN0MRaPu7dZCAXr3ruBTcC" 'False) (C1 ('MetaCons "FieldPosition'" 'PrefixI 'True) (S1 ('MetaSel ('Just "below") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "fixed") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe FixedPosition)) :*: S1 ('MetaSel ('Just "rightOf") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))

newFieldPosition :: FieldPosition Source #

Create a value of FieldPosition 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:below:FieldPosition', fieldPosition_below - The field position is below the field specified by the string.

$sel:fixed:FieldPosition', fieldPosition_fixed - The field position is fixed and doesn't change in relation to other fields.

$sel:rightOf:FieldPosition', fieldPosition_rightOf - The field position is to the right of the field specified by the string.

fieldPosition_below :: Lens' FieldPosition (Maybe Text) Source #

The field position is below the field specified by the string.

fieldPosition_fixed :: Lens' FieldPosition (Maybe FixedPosition) Source #

The field position is fixed and doesn't change in relation to other fields.

fieldPosition_rightOf :: Lens' FieldPosition (Maybe Text) Source #

The field position is to the right of the field specified by the string.