{-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE LambdaCase #-} {-# LANGUAGE OverloadedStrings #-} -- Module : Network.AWS.Route53.Internal -- Copyright : (c) 2013-2014 Brendan Hay -- License : This Source Code Form is subject to the terms of -- the Mozilla Public License, v. 2.0. -- A copy of the MPL can be found in the LICENSE file or -- you can obtain it at http://mozilla.org/MPL/2.0/. -- Maintainer : Brendan Hay -- Stability : experimental -- Portability : non-portable (GHC extensions) module Network.AWS.Route53.Internal ( module Network.AWS.Route53.Internal , Region (..) ) where import GHC.Generics import Network.AWS.Data import Network.AWS.Prelude import Network.AWS.Types (Region(..)) data RecordType = A -- ^ A | AAAA -- ^ AAAA | CNAME -- ^ CNAME | MX -- ^ MX | NS -- ^ NS | PTR -- ^ PTR | SOA -- ^ SOA | SPF -- ^ SPF | SRV -- ^ SRV | TXT -- ^ TXT deriving (Eq, Ord, Show, Generic, Enum) instance Hashable RecordType instance FromText RecordType where parser = match "A" A <|> match "AAAA" AAAA <|> match "CNAME" CNAME <|> match "MX" MX <|> match "NS" NS <|> match "PTR" PTR <|> match "SOA" SOA <|> match "SPF" SPF <|> match "SRV" SRV <|> match "TXT" TXT {-# INLINE parser #-} instance ToText RecordType where toText = \case A -> "A" AAAA -> "AAAA" CNAME -> "CNAME" MX -> "MX" NS -> "NS" PTR -> "PTR" SOA -> "SOA" SPF -> "SPF" SRV -> "SRV" TXT -> "TXT" {-# INLINE toText #-} instance ToByteString RecordType instance ToHeader RecordType instance ToQuery RecordType instance FromXML RecordType where parseXML = parseXMLText "RecordType" {-# INLINE parseXML #-} instance ToXML RecordType where toXML = toXMLText {-# INLINE toXML #-}