module Stratosphere.SageMaker.UserProfile.CustomPosixUserConfigProperty ( CustomPosixUserConfigProperty(..), mkCustomPosixUserConfigProperty ) where import qualified Data.Aeson as JSON import qualified Stratosphere.Prelude as Prelude import Stratosphere.Property import Stratosphere.ResourceProperties import Stratosphere.Value data CustomPosixUserConfigProperty = -- | See: CustomPosixUserConfigProperty {haddock_workaround_ :: (), -- | See: gid :: (Value Prelude.Integer), -- | See: uid :: (Value Prelude.Integer)} deriving stock (Prelude.Eq, Prelude.Show) mkCustomPosixUserConfigProperty :: Value Prelude.Integer -> Value Prelude.Integer -> CustomPosixUserConfigProperty mkCustomPosixUserConfigProperty gid uid = CustomPosixUserConfigProperty {haddock_workaround_ = (), gid = gid, uid = uid} instance ToResourceProperties CustomPosixUserConfigProperty where toResourceProperties CustomPosixUserConfigProperty {..} = ResourceProperties {awsType = "AWS::SageMaker::UserProfile.CustomPosixUserConfig", supportsTags = Prelude.False, properties = ["Gid" JSON..= gid, "Uid" JSON..= uid]} instance JSON.ToJSON CustomPosixUserConfigProperty where toJSON CustomPosixUserConfigProperty {..} = JSON.object ["Gid" JSON..= gid, "Uid" JSON..= uid] instance Property "Gid" CustomPosixUserConfigProperty where type PropertyType "Gid" CustomPosixUserConfigProperty = Value Prelude.Integer set newValue CustomPosixUserConfigProperty {..} = CustomPosixUserConfigProperty {gid = newValue, ..} instance Property "Uid" CustomPosixUserConfigProperty where type PropertyType "Uid" CustomPosixUserConfigProperty = Value Prelude.Integer set newValue CustomPosixUserConfigProperty {..} = CustomPosixUserConfigProperty {uid = newValue, ..}