{-# 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.InputColumn -- 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.InputColumn 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.InputColumnDataType -- | Metadata for a column that is used as the input of a transform -- operation. -- -- /See:/ 'newInputColumn' smart constructor. data InputColumn = InputColumn' { -- | The name of this column in the underlying data source. name :: Prelude.Text, -- | The data type of the column. type' :: InputColumnDataType } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'InputColumn' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'name', 'inputColumn_name' - The name of this column in the underlying data source. -- -- 'type'', 'inputColumn_type' - The data type of the column. newInputColumn :: -- | 'name' Prelude.Text -> -- | 'type'' InputColumnDataType -> InputColumn newInputColumn pName_ pType_ = InputColumn' {name = pName_, type' = pType_} -- | The name of this column in the underlying data source. inputColumn_name :: Lens.Lens' InputColumn Prelude.Text inputColumn_name = Lens.lens (\InputColumn' {name} -> name) (\s@InputColumn' {} a -> s {name = a} :: InputColumn) -- | The data type of the column. inputColumn_type :: Lens.Lens' InputColumn InputColumnDataType inputColumn_type = Lens.lens (\InputColumn' {type'} -> type') (\s@InputColumn' {} a -> s {type' = a} :: InputColumn) instance Data.FromJSON InputColumn where parseJSON = Data.withObject "InputColumn" ( \x -> InputColumn' Prelude.<$> (x Data..: "Name") Prelude.<*> (x Data..: "Type") ) instance Prelude.Hashable InputColumn where hashWithSalt _salt InputColumn' {..} = _salt `Prelude.hashWithSalt` name `Prelude.hashWithSalt` type' instance Prelude.NFData InputColumn where rnf InputColumn' {..} = Prelude.rnf name `Prelude.seq` Prelude.rnf type' instance Data.ToJSON InputColumn where toJSON InputColumn' {..} = Data.object ( Prelude.catMaybes [ Prelude.Just ("Name" Data..= name), Prelude.Just ("Type" Data..= type') ] )