module Stratosphere.RDS.DBCluster.EndpointProperty ( EndpointProperty(..), mkEndpointProperty ) where import qualified Data.Aeson as JSON import qualified Stratosphere.Prelude as Prelude import Stratosphere.Property import Stratosphere.ResourceProperties import Stratosphere.Value data EndpointProperty = -- | See: EndpointProperty {haddock_workaround_ :: (), -- | See: address :: (Prelude.Maybe (Value Prelude.Text)), -- | See: port :: (Prelude.Maybe (Value Prelude.Text))} deriving stock (Prelude.Eq, Prelude.Show) mkEndpointProperty :: EndpointProperty mkEndpointProperty = EndpointProperty {haddock_workaround_ = (), address = Prelude.Nothing, port = Prelude.Nothing} instance ToResourceProperties EndpointProperty where toResourceProperties EndpointProperty {..} = ResourceProperties {awsType = "AWS::RDS::DBCluster.Endpoint", supportsTags = Prelude.False, properties = Prelude.fromList (Prelude.catMaybes [(JSON..=) "Address" Prelude.<$> address, (JSON..=) "Port" Prelude.<$> port])} instance JSON.ToJSON EndpointProperty where toJSON EndpointProperty {..} = JSON.object (Prelude.fromList (Prelude.catMaybes [(JSON..=) "Address" Prelude.<$> address, (JSON..=) "Port" Prelude.<$> port])) instance Property "Address" EndpointProperty where type PropertyType "Address" EndpointProperty = Value Prelude.Text set newValue EndpointProperty {..} = EndpointProperty {address = Prelude.pure newValue, ..} instance Property "Port" EndpointProperty where type PropertyType "Port" EndpointProperty = Value Prelude.Text set newValue EndpointProperty {..} = EndpointProperty {port = Prelude.pure newValue, ..}