module Stratosphere.ElasticLoadBalancingV2.ListenerRule.HttpRequestMethodConfigProperty ( HttpRequestMethodConfigProperty(..), mkHttpRequestMethodConfigProperty ) where import qualified Data.Aeson as JSON import qualified Stratosphere.Prelude as Prelude import Stratosphere.Property import Stratosphere.ResourceProperties import Stratosphere.Value data HttpRequestMethodConfigProperty = -- | See: HttpRequestMethodConfigProperty {haddock_workaround_ :: (), -- | See: values :: (Prelude.Maybe (ValueList Prelude.Text))} deriving stock (Prelude.Eq, Prelude.Show) mkHttpRequestMethodConfigProperty :: HttpRequestMethodConfigProperty mkHttpRequestMethodConfigProperty = HttpRequestMethodConfigProperty {haddock_workaround_ = (), values = Prelude.Nothing} instance ToResourceProperties HttpRequestMethodConfigProperty where toResourceProperties HttpRequestMethodConfigProperty {..} = ResourceProperties {awsType = "AWS::ElasticLoadBalancingV2::ListenerRule.HttpRequestMethodConfig", supportsTags = Prelude.False, properties = Prelude.fromList (Prelude.catMaybes [(JSON..=) "Values" Prelude.<$> values])} instance JSON.ToJSON HttpRequestMethodConfigProperty where toJSON HttpRequestMethodConfigProperty {..} = JSON.object (Prelude.fromList (Prelude.catMaybes [(JSON..=) "Values" Prelude.<$> values])) instance Property "Values" HttpRequestMethodConfigProperty where type PropertyType "Values" HttpRequestMethodConfigProperty = ValueList Prelude.Text set newValue HttpRequestMethodConfigProperty {..} = HttpRequestMethodConfigProperty {values = Prelude.pure newValue, ..}