module Stratosphere.QuickSight.DataSet.OutputColumnProperty ( OutputColumnProperty(..), mkOutputColumnProperty ) where import qualified Data.Aeson as JSON import qualified Stratosphere.Prelude as Prelude import Stratosphere.Property import Stratosphere.ResourceProperties import Stratosphere.Value data OutputColumnProperty = -- | See: OutputColumnProperty {haddock_workaround_ :: (), -- | See: description :: (Prelude.Maybe (Value Prelude.Text)), -- | See: name :: (Prelude.Maybe (Value Prelude.Text)), -- | See: subType :: (Prelude.Maybe (Value Prelude.Text)), -- | See: type' :: (Prelude.Maybe (Value Prelude.Text))} deriving stock (Prelude.Eq, Prelude.Show) mkOutputColumnProperty :: OutputColumnProperty mkOutputColumnProperty = OutputColumnProperty {haddock_workaround_ = (), description = Prelude.Nothing, name = Prelude.Nothing, subType = Prelude.Nothing, type' = Prelude.Nothing} instance ToResourceProperties OutputColumnProperty where toResourceProperties OutputColumnProperty {..} = ResourceProperties {awsType = "AWS::QuickSight::DataSet.OutputColumn", supportsTags = Prelude.False, properties = Prelude.fromList (Prelude.catMaybes [(JSON..=) "Description" Prelude.<$> description, (JSON..=) "Name" Prelude.<$> name, (JSON..=) "SubType" Prelude.<$> subType, (JSON..=) "Type" Prelude.<$> type'])} instance JSON.ToJSON OutputColumnProperty where toJSON OutputColumnProperty {..} = JSON.object (Prelude.fromList (Prelude.catMaybes [(JSON..=) "Description" Prelude.<$> description, (JSON..=) "Name" Prelude.<$> name, (JSON..=) "SubType" Prelude.<$> subType, (JSON..=) "Type" Prelude.<$> type'])) instance Property "Description" OutputColumnProperty where type PropertyType "Description" OutputColumnProperty = Value Prelude.Text set newValue OutputColumnProperty {..} = OutputColumnProperty {description = Prelude.pure newValue, ..} instance Property "Name" OutputColumnProperty where type PropertyType "Name" OutputColumnProperty = Value Prelude.Text set newValue OutputColumnProperty {..} = OutputColumnProperty {name = Prelude.pure newValue, ..} instance Property "SubType" OutputColumnProperty where type PropertyType "SubType" OutputColumnProperty = Value Prelude.Text set newValue OutputColumnProperty {..} = OutputColumnProperty {subType = Prelude.pure newValue, ..} instance Property "Type" OutputColumnProperty where type PropertyType "Type" OutputColumnProperty = Value Prelude.Text set newValue OutputColumnProperty {..} = OutputColumnProperty {type' = Prelude.pure newValue, ..}