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

Description

 
Synopsis

Documentation

data LayoutConfiguration Source #

The configuration that determines what the type of layout will be used on a sheet.

This is a union type structure. For this structure to be valid, only one of the attributes can be defined.

See: newLayoutConfiguration smart constructor.

Constructors

LayoutConfiguration' 

Fields

  • freeFormLayout :: Maybe FreeFormLayoutConfiguration

    A free-form is optimized for a fixed width and has more control over the exact placement of layout elements.

  • gridLayout :: Maybe GridLayoutConfiguration

    A type of layout that can be used on a sheet. In a grid layout, visuals snap to a grid with standard spacing and alignment. Dashboards are displayed as designed, with options to fit to screen or view at actual size. A grid layout can be configured to behave in one of two ways when the viewport is resized: FIXED or RESPONSIVE.

  • sectionBasedLayout :: Maybe SectionBasedLayoutConfiguration

    A section based layout organizes visuals into multiple sections and has customized header, footer and page break.

Instances

Instances details
FromJSON LayoutConfiguration Source # 
Instance details

Defined in Amazonka.QuickSight.Types.LayoutConfiguration

ToJSON LayoutConfiguration Source # 
Instance details

Defined in Amazonka.QuickSight.Types.LayoutConfiguration

Generic LayoutConfiguration Source # 
Instance details

Defined in Amazonka.QuickSight.Types.LayoutConfiguration

Associated Types

type Rep LayoutConfiguration :: Type -> Type #

Show LayoutConfiguration Source # 
Instance details

Defined in Amazonka.QuickSight.Types.LayoutConfiguration

NFData LayoutConfiguration Source # 
Instance details

Defined in Amazonka.QuickSight.Types.LayoutConfiguration

Methods

rnf :: LayoutConfiguration -> () #

Eq LayoutConfiguration Source # 
Instance details

Defined in Amazonka.QuickSight.Types.LayoutConfiguration

Hashable LayoutConfiguration Source # 
Instance details

Defined in Amazonka.QuickSight.Types.LayoutConfiguration

type Rep LayoutConfiguration Source # 
Instance details

Defined in Amazonka.QuickSight.Types.LayoutConfiguration

type Rep LayoutConfiguration = D1 ('MetaData "LayoutConfiguration" "Amazonka.QuickSight.Types.LayoutConfiguration" "amazonka-quicksight-2.0-9P6nV9koXl6GTlt8ZjS7C9" 'False) (C1 ('MetaCons "LayoutConfiguration'" 'PrefixI 'True) (S1 ('MetaSel ('Just "freeFormLayout") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe FreeFormLayoutConfiguration)) :*: (S1 ('MetaSel ('Just "gridLayout") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe GridLayoutConfiguration)) :*: S1 ('MetaSel ('Just "sectionBasedLayout") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe SectionBasedLayoutConfiguration)))))

newLayoutConfiguration :: LayoutConfiguration Source #

Create a value of LayoutConfiguration 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:freeFormLayout:LayoutConfiguration', layoutConfiguration_freeFormLayout - A free-form is optimized for a fixed width and has more control over the exact placement of layout elements.

$sel:gridLayout:LayoutConfiguration', layoutConfiguration_gridLayout - A type of layout that can be used on a sheet. In a grid layout, visuals snap to a grid with standard spacing and alignment. Dashboards are displayed as designed, with options to fit to screen or view at actual size. A grid layout can be configured to behave in one of two ways when the viewport is resized: FIXED or RESPONSIVE.

$sel:sectionBasedLayout:LayoutConfiguration', layoutConfiguration_sectionBasedLayout - A section based layout organizes visuals into multiple sections and has customized header, footer and page break.

layoutConfiguration_freeFormLayout :: Lens' LayoutConfiguration (Maybe FreeFormLayoutConfiguration) Source #

A free-form is optimized for a fixed width and has more control over the exact placement of layout elements.

layoutConfiguration_gridLayout :: Lens' LayoutConfiguration (Maybe GridLayoutConfiguration) Source #

A type of layout that can be used on a sheet. In a grid layout, visuals snap to a grid with standard spacing and alignment. Dashboards are displayed as designed, with options to fit to screen or view at actual size. A grid layout can be configured to behave in one of two ways when the viewport is resized: FIXED or RESPONSIVE.

layoutConfiguration_sectionBasedLayout :: Lens' LayoutConfiguration (Maybe SectionBasedLayoutConfiguration) Source #

A section based layout organizes visuals into multiple sections and has customized header, footer and page break.