amazonka-quicksight-2.0: gen/Amazonka/QuickSight/Types/TileLayoutStyle.hs
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE DuplicateRecordFields #-}
{-# LANGUAGE NamedFieldPuns #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE StrictData #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
{-# OPTIONS_GHC -fno-warn-unused-matches #-}
-- Derived from AWS service descriptions, licensed under Apache 2.0.
-- |
-- Module : Amazonka.QuickSight.Types.TileLayoutStyle
-- Copyright : (c) 2013-2023 Brendan Hay
-- License : Mozilla Public License, v. 2.0.
-- Maintainer : Brendan Hay
-- Stability : auto-generated
-- Portability : non-portable (GHC extensions)
module Amazonka.QuickSight.Types.TileLayoutStyle where
import qualified Amazonka.Core as Core
import qualified Amazonka.Core.Lens.Internal as Lens
import qualified Amazonka.Data as Data
import qualified Amazonka.Prelude as Prelude
import Amazonka.QuickSight.Types.GutterStyle
import Amazonka.QuickSight.Types.MarginStyle
-- | The display options for the layout of tiles on a sheet.
--
-- /See:/ 'newTileLayoutStyle' smart constructor.
data TileLayoutStyle = TileLayoutStyle'
{ -- | The gutter settings that apply between tiles.
gutter :: Prelude.Maybe GutterStyle,
-- | The margin settings that apply around the outside edge of sheets.
margin :: Prelude.Maybe MarginStyle
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'TileLayoutStyle' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'gutter', 'tileLayoutStyle_gutter' - The gutter settings that apply between tiles.
--
-- 'margin', 'tileLayoutStyle_margin' - The margin settings that apply around the outside edge of sheets.
newTileLayoutStyle ::
TileLayoutStyle
newTileLayoutStyle =
TileLayoutStyle'
{ gutter = Prelude.Nothing,
margin = Prelude.Nothing
}
-- | The gutter settings that apply between tiles.
tileLayoutStyle_gutter :: Lens.Lens' TileLayoutStyle (Prelude.Maybe GutterStyle)
tileLayoutStyle_gutter = Lens.lens (\TileLayoutStyle' {gutter} -> gutter) (\s@TileLayoutStyle' {} a -> s {gutter = a} :: TileLayoutStyle)
-- | The margin settings that apply around the outside edge of sheets.
tileLayoutStyle_margin :: Lens.Lens' TileLayoutStyle (Prelude.Maybe MarginStyle)
tileLayoutStyle_margin = Lens.lens (\TileLayoutStyle' {margin} -> margin) (\s@TileLayoutStyle' {} a -> s {margin = a} :: TileLayoutStyle)
instance Data.FromJSON TileLayoutStyle where
parseJSON =
Data.withObject
"TileLayoutStyle"
( \x ->
TileLayoutStyle'
Prelude.<$> (x Data..:? "Gutter")
Prelude.<*> (x Data..:? "Margin")
)
instance Prelude.Hashable TileLayoutStyle where
hashWithSalt _salt TileLayoutStyle' {..} =
_salt
`Prelude.hashWithSalt` gutter
`Prelude.hashWithSalt` margin
instance Prelude.NFData TileLayoutStyle where
rnf TileLayoutStyle' {..} =
Prelude.rnf gutter `Prelude.seq` Prelude.rnf margin
instance Data.ToJSON TileLayoutStyle where
toJSON TileLayoutStyle' {..} =
Data.object
( Prelude.catMaybes
[ ("Gutter" Data..=) Prelude.<$> gutter,
("Margin" Data..=) Prelude.<$> margin
]
)