module Stratosphere.WAFRegional.SizeConstraintSet ( module Exports, SizeConstraintSet(..), mkSizeConstraintSet ) where import qualified Data.Aeson as JSON import qualified Stratosphere.Prelude as Prelude import Stratosphere.Property import {-# SOURCE #-} Stratosphere.WAFRegional.SizeConstraintSet.SizeConstraintProperty as Exports import Stratosphere.ResourceProperties import Stratosphere.Value data SizeConstraintSet = -- | See: SizeConstraintSet {haddock_workaround_ :: (), -- | See: name :: (Value Prelude.Text), -- | See: sizeConstraints :: (Prelude.Maybe [SizeConstraintProperty])} deriving stock (Prelude.Eq, Prelude.Show) mkSizeConstraintSet :: Value Prelude.Text -> SizeConstraintSet mkSizeConstraintSet name = SizeConstraintSet {haddock_workaround_ = (), name = name, sizeConstraints = Prelude.Nothing} instance ToResourceProperties SizeConstraintSet where toResourceProperties SizeConstraintSet {..} = ResourceProperties {awsType = "AWS::WAFRegional::SizeConstraintSet", supportsTags = Prelude.False, properties = Prelude.fromList ((Prelude.<>) ["Name" JSON..= name] (Prelude.catMaybes [(JSON..=) "SizeConstraints" Prelude.<$> sizeConstraints]))} instance JSON.ToJSON SizeConstraintSet where toJSON SizeConstraintSet {..} = JSON.object (Prelude.fromList ((Prelude.<>) ["Name" JSON..= name] (Prelude.catMaybes [(JSON..=) "SizeConstraints" Prelude.<$> sizeConstraints]))) instance Property "Name" SizeConstraintSet where type PropertyType "Name" SizeConstraintSet = Value Prelude.Text set newValue SizeConstraintSet {..} = SizeConstraintSet {name = newValue, ..} instance Property "SizeConstraints" SizeConstraintSet where type PropertyType "SizeConstraints" SizeConstraintSet = [SizeConstraintProperty] set newValue SizeConstraintSet {..} = SizeConstraintSet {sizeConstraints = Prelude.pure newValue, ..}