amazonka-quicksight-2.0: Amazon QuickSight 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.QuickSight.Types.GridLayoutElement

Description

 
Synopsis

Documentation

data GridLayoutElement Source #

An element within a grid layout.

See: newGridLayoutElement smart constructor.

Constructors

GridLayoutElement' 

Fields

Instances

Instances details
FromJSON GridLayoutElement Source # 
Instance details

Defined in Amazonka.QuickSight.Types.GridLayoutElement

ToJSON GridLayoutElement Source # 
Instance details

Defined in Amazonka.QuickSight.Types.GridLayoutElement

Generic GridLayoutElement Source # 
Instance details

Defined in Amazonka.QuickSight.Types.GridLayoutElement

Associated Types

type Rep GridLayoutElement :: Type -> Type #

Read GridLayoutElement Source # 
Instance details

Defined in Amazonka.QuickSight.Types.GridLayoutElement

Show GridLayoutElement Source # 
Instance details

Defined in Amazonka.QuickSight.Types.GridLayoutElement

NFData GridLayoutElement Source # 
Instance details

Defined in Amazonka.QuickSight.Types.GridLayoutElement

Methods

rnf :: GridLayoutElement -> () #

Eq GridLayoutElement Source # 
Instance details

Defined in Amazonka.QuickSight.Types.GridLayoutElement

Hashable GridLayoutElement Source # 
Instance details

Defined in Amazonka.QuickSight.Types.GridLayoutElement

type Rep GridLayoutElement Source # 
Instance details

Defined in Amazonka.QuickSight.Types.GridLayoutElement

type Rep GridLayoutElement = D1 ('MetaData "GridLayoutElement" "Amazonka.QuickSight.Types.GridLayoutElement" "amazonka-quicksight-2.0-9P6nV9koXl6GTlt8ZjS7C9" 'False) (C1 ('MetaCons "GridLayoutElement'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "columnIndex") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: (S1 ('MetaSel ('Just "rowIndex") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "elementId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))) :*: (S1 ('MetaSel ('Just "elementType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 LayoutElementType) :*: (S1 ('MetaSel ('Just "columnSpan") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Natural) :*: S1 ('MetaSel ('Just "rowSpan") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Natural)))))

newGridLayoutElement Source #

Create a value of GridLayoutElement 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:columnIndex:GridLayoutElement', gridLayoutElement_columnIndex - The column index for the upper left corner of an element.

$sel:rowIndex:GridLayoutElement', gridLayoutElement_rowIndex - The row index for the upper left corner of an element.

$sel:elementId:GridLayoutElement', gridLayoutElement_elementId - A unique identifier for an element within a grid layout.

$sel:elementType:GridLayoutElement', gridLayoutElement_elementType - The type of element.

$sel:columnSpan:GridLayoutElement', gridLayoutElement_columnSpan - The width of a grid element expressed as a number of grid columns.

$sel:rowSpan:GridLayoutElement', gridLayoutElement_rowSpan - The height of a grid element expressed as a number of grid rows.

gridLayoutElement_columnIndex :: Lens' GridLayoutElement (Maybe Natural) Source #

The column index for the upper left corner of an element.

gridLayoutElement_rowIndex :: Lens' GridLayoutElement (Maybe Natural) Source #

The row index for the upper left corner of an element.

gridLayoutElement_elementId :: Lens' GridLayoutElement Text Source #

A unique identifier for an element within a grid layout.

gridLayoutElement_columnSpan :: Lens' GridLayoutElement Natural Source #

The width of a grid element expressed as a number of grid columns.

gridLayoutElement_rowSpan :: Lens' GridLayoutElement Natural Source #

The height of a grid element expressed as a number of grid rows.