module Stratosphere.Location.Map ( module Exports, Map(..), mkMap ) where import qualified Data.Aeson as JSON import qualified Stratosphere.Prelude as Prelude import Stratosphere.Property import {-# SOURCE #-} Stratosphere.Location.Map.MapConfigurationProperty as Exports import Stratosphere.ResourceProperties import Stratosphere.Tag import Stratosphere.Value data Map = -- | See: Map {haddock_workaround_ :: (), -- | See: configuration :: MapConfigurationProperty, -- | See: description :: (Prelude.Maybe (Value Prelude.Text)), -- | See: mapName :: (Value Prelude.Text), -- | See: pricingPlan :: (Prelude.Maybe (Value Prelude.Text)), -- | See: tags :: (Prelude.Maybe [Tag])} deriving stock (Prelude.Eq, Prelude.Show) mkMap :: MapConfigurationProperty -> Value Prelude.Text -> Map mkMap configuration mapName = Map {haddock_workaround_ = (), configuration = configuration, mapName = mapName, description = Prelude.Nothing, pricingPlan = Prelude.Nothing, tags = Prelude.Nothing} instance ToResourceProperties Map where toResourceProperties Map {..} = ResourceProperties {awsType = "AWS::Location::Map", supportsTags = Prelude.True, properties = Prelude.fromList ((Prelude.<>) ["Configuration" JSON..= configuration, "MapName" JSON..= mapName] (Prelude.catMaybes [(JSON..=) "Description" Prelude.<$> description, (JSON..=) "PricingPlan" Prelude.<$> pricingPlan, (JSON..=) "Tags" Prelude.<$> tags]))} instance JSON.ToJSON Map where toJSON Map {..} = JSON.object (Prelude.fromList ((Prelude.<>) ["Configuration" JSON..= configuration, "MapName" JSON..= mapName] (Prelude.catMaybes [(JSON..=) "Description" Prelude.<$> description, (JSON..=) "PricingPlan" Prelude.<$> pricingPlan, (JSON..=) "Tags" Prelude.<$> tags]))) instance Property "Configuration" Map where type PropertyType "Configuration" Map = MapConfigurationProperty set newValue Map {..} = Map {configuration = newValue, ..} instance Property "Description" Map where type PropertyType "Description" Map = Value Prelude.Text set newValue Map {..} = Map {description = Prelude.pure newValue, ..} instance Property "MapName" Map where type PropertyType "MapName" Map = Value Prelude.Text set newValue Map {..} = Map {mapName = newValue, ..} instance Property "PricingPlan" Map where type PropertyType "PricingPlan" Map = Value Prelude.Text set newValue Map {..} = Map {pricingPlan = Prelude.pure newValue, ..} instance Property "Tags" Map where type PropertyType "Tags" Map = [Tag] set newValue Map {..} = Map {tags = Prelude.pure newValue, ..}