module Stratosphere.LookoutMetrics.AnomalyDetector.CsvFormatDescriptorProperty (
        CsvFormatDescriptorProperty(..), mkCsvFormatDescriptorProperty
    ) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import Stratosphere.ResourceProperties
import Stratosphere.Value
data CsvFormatDescriptorProperty
  = -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-csvformatdescriptor.html>
    CsvFormatDescriptorProperty {CsvFormatDescriptorProperty -> ()
haddock_workaround_ :: (),
                                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-csvformatdescriptor.html#cfn-lookoutmetrics-anomalydetector-csvformatdescriptor-charset>
                                 CsvFormatDescriptorProperty -> Maybe (Value Text)
charset :: (Prelude.Maybe (Value Prelude.Text)),
                                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-csvformatdescriptor.html#cfn-lookoutmetrics-anomalydetector-csvformatdescriptor-containsheader>
                                 CsvFormatDescriptorProperty -> Maybe (Value Bool)
containsHeader :: (Prelude.Maybe (Value Prelude.Bool)),
                                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-csvformatdescriptor.html#cfn-lookoutmetrics-anomalydetector-csvformatdescriptor-delimiter>
                                 CsvFormatDescriptorProperty -> Maybe (Value Text)
delimiter :: (Prelude.Maybe (Value Prelude.Text)),
                                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-csvformatdescriptor.html#cfn-lookoutmetrics-anomalydetector-csvformatdescriptor-filecompression>
                                 CsvFormatDescriptorProperty -> Maybe (Value Text)
fileCompression :: (Prelude.Maybe (Value Prelude.Text)),
                                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-csvformatdescriptor.html#cfn-lookoutmetrics-anomalydetector-csvformatdescriptor-headerlist>
                                 CsvFormatDescriptorProperty -> Maybe (ValueList Text)
headerList :: (Prelude.Maybe (ValueList Prelude.Text)),
                                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-csvformatdescriptor.html#cfn-lookoutmetrics-anomalydetector-csvformatdescriptor-quotesymbol>
                                 CsvFormatDescriptorProperty -> Maybe (Value Text)
quoteSymbol :: (Prelude.Maybe (Value Prelude.Text))}
  deriving stock (CsvFormatDescriptorProperty -> CsvFormatDescriptorProperty -> Bool
(CsvFormatDescriptorProperty
 -> CsvFormatDescriptorProperty -> Bool)
-> (CsvFormatDescriptorProperty
    -> CsvFormatDescriptorProperty -> Bool)
-> Eq CsvFormatDescriptorProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: CsvFormatDescriptorProperty -> CsvFormatDescriptorProperty -> Bool
== :: CsvFormatDescriptorProperty -> CsvFormatDescriptorProperty -> Bool
$c/= :: CsvFormatDescriptorProperty -> CsvFormatDescriptorProperty -> Bool
/= :: CsvFormatDescriptorProperty -> CsvFormatDescriptorProperty -> Bool
Prelude.Eq, Int -> CsvFormatDescriptorProperty -> ShowS
[CsvFormatDescriptorProperty] -> ShowS
CsvFormatDescriptorProperty -> String
(Int -> CsvFormatDescriptorProperty -> ShowS)
-> (CsvFormatDescriptorProperty -> String)
-> ([CsvFormatDescriptorProperty] -> ShowS)
-> Show CsvFormatDescriptorProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> CsvFormatDescriptorProperty -> ShowS
showsPrec :: Int -> CsvFormatDescriptorProperty -> ShowS
$cshow :: CsvFormatDescriptorProperty -> String
show :: CsvFormatDescriptorProperty -> String
$cshowList :: [CsvFormatDescriptorProperty] -> ShowS
showList :: [CsvFormatDescriptorProperty] -> ShowS
Prelude.Show)
mkCsvFormatDescriptorProperty :: CsvFormatDescriptorProperty
mkCsvFormatDescriptorProperty :: CsvFormatDescriptorProperty
mkCsvFormatDescriptorProperty
  = CsvFormatDescriptorProperty
      {haddock_workaround_ :: ()
haddock_workaround_ = (), charset :: Maybe (Value Text)
charset = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       containsHeader :: Maybe (Value Bool)
containsHeader = Maybe (Value Bool)
forall a. Maybe a
Prelude.Nothing, delimiter :: Maybe (Value Text)
delimiter = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       fileCompression :: Maybe (Value Text)
fileCompression = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, headerList :: Maybe (ValueList Text)
headerList = Maybe (ValueList Text)
forall a. Maybe a
Prelude.Nothing,
       quoteSymbol :: Maybe (Value Text)
quoteSymbol = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties CsvFormatDescriptorProperty where
  toResourceProperties :: CsvFormatDescriptorProperty -> ResourceProperties
toResourceProperties CsvFormatDescriptorProperty {Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: CsvFormatDescriptorProperty -> ()
charset :: CsvFormatDescriptorProperty -> Maybe (Value Text)
containsHeader :: CsvFormatDescriptorProperty -> Maybe (Value Bool)
delimiter :: CsvFormatDescriptorProperty -> Maybe (Value Text)
fileCompression :: CsvFormatDescriptorProperty -> Maybe (Value Text)
headerList :: CsvFormatDescriptorProperty -> Maybe (ValueList Text)
quoteSymbol :: CsvFormatDescriptorProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
charset :: Maybe (Value Text)
containsHeader :: Maybe (Value Bool)
delimiter :: Maybe (Value Text)
fileCompression :: Maybe (Value Text)
headerList :: Maybe (ValueList Text)
quoteSymbol :: Maybe (Value Text)
..}
    = ResourceProperties
        {awsType :: Text
awsType = Text
"AWS::LookoutMetrics::AnomalyDetector.CsvFormatDescriptor",
         supportsTags :: Bool
supportsTags = Bool
Prelude.False,
         properties :: Object
properties = [Item Object] -> Object
forall l. IsList l => [Item l] -> l
Prelude.fromList
                        ([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
                           [Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Charset" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
charset,
                            Key -> Value Bool -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ContainsHeader" (Value Bool -> (Key, Value))
-> Maybe (Value Bool) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Bool)
containsHeader,
                            Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Delimiter" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
delimiter,
                            Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"FileCompression" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
fileCompression,
                            Key -> ValueList Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"HeaderList" (ValueList Text -> (Key, Value))
-> Maybe (ValueList Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (ValueList Text)
headerList,
                            Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"QuoteSymbol" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
quoteSymbol])}
instance JSON.ToJSON CsvFormatDescriptorProperty where
  toJSON :: CsvFormatDescriptorProperty -> Value
toJSON CsvFormatDescriptorProperty {Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: CsvFormatDescriptorProperty -> ()
charset :: CsvFormatDescriptorProperty -> Maybe (Value Text)
containsHeader :: CsvFormatDescriptorProperty -> Maybe (Value Bool)
delimiter :: CsvFormatDescriptorProperty -> Maybe (Value Text)
fileCompression :: CsvFormatDescriptorProperty -> Maybe (Value Text)
headerList :: CsvFormatDescriptorProperty -> Maybe (ValueList Text)
quoteSymbol :: CsvFormatDescriptorProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
charset :: Maybe (Value Text)
containsHeader :: Maybe (Value Bool)
delimiter :: Maybe (Value Text)
fileCompression :: Maybe (Value Text)
headerList :: Maybe (ValueList Text)
quoteSymbol :: Maybe (Value Text)
..}
    = [(Key, Value)] -> Value
JSON.object
        ([Item [(Key, Value)]] -> [(Key, Value)]
forall l. IsList l => [Item l] -> l
Prelude.fromList
           ([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
              [Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Charset" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
charset,
               Key -> Value Bool -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ContainsHeader" (Value Bool -> (Key, Value))
-> Maybe (Value Bool) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Bool)
containsHeader,
               Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Delimiter" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
delimiter,
               Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"FileCompression" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
fileCompression,
               Key -> ValueList Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"HeaderList" (ValueList Text -> (Key, Value))
-> Maybe (ValueList Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (ValueList Text)
headerList,
               Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"QuoteSymbol" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
quoteSymbol]))
instance Property "Charset" CsvFormatDescriptorProperty where
  type PropertyType "Charset" CsvFormatDescriptorProperty = Value Prelude.Text
  set :: PropertyType "Charset" CsvFormatDescriptorProperty
-> CsvFormatDescriptorProperty -> CsvFormatDescriptorProperty
set PropertyType "Charset" CsvFormatDescriptorProperty
newValue CsvFormatDescriptorProperty {Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: CsvFormatDescriptorProperty -> ()
charset :: CsvFormatDescriptorProperty -> Maybe (Value Text)
containsHeader :: CsvFormatDescriptorProperty -> Maybe (Value Bool)
delimiter :: CsvFormatDescriptorProperty -> Maybe (Value Text)
fileCompression :: CsvFormatDescriptorProperty -> Maybe (Value Text)
headerList :: CsvFormatDescriptorProperty -> Maybe (ValueList Text)
quoteSymbol :: CsvFormatDescriptorProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
charset :: Maybe (Value Text)
containsHeader :: Maybe (Value Bool)
delimiter :: Maybe (Value Text)
fileCompression :: Maybe (Value Text)
headerList :: Maybe (ValueList Text)
quoteSymbol :: Maybe (Value Text)
..}
    = CsvFormatDescriptorProperty {charset :: Maybe (Value Text)
charset = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Charset" CsvFormatDescriptorProperty
Value Text
newValue, Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: ()
containsHeader :: Maybe (Value Bool)
delimiter :: Maybe (Value Text)
fileCompression :: Maybe (Value Text)
headerList :: Maybe (ValueList Text)
quoteSymbol :: Maybe (Value Text)
haddock_workaround_ :: ()
containsHeader :: Maybe (Value Bool)
delimiter :: Maybe (Value Text)
fileCompression :: Maybe (Value Text)
headerList :: Maybe (ValueList Text)
quoteSymbol :: Maybe (Value Text)
..}
instance Property "ContainsHeader" CsvFormatDescriptorProperty where
  type PropertyType "ContainsHeader" CsvFormatDescriptorProperty = Value Prelude.Bool
  set :: PropertyType "ContainsHeader" CsvFormatDescriptorProperty
-> CsvFormatDescriptorProperty -> CsvFormatDescriptorProperty
set PropertyType "ContainsHeader" CsvFormatDescriptorProperty
newValue CsvFormatDescriptorProperty {Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: CsvFormatDescriptorProperty -> ()
charset :: CsvFormatDescriptorProperty -> Maybe (Value Text)
containsHeader :: CsvFormatDescriptorProperty -> Maybe (Value Bool)
delimiter :: CsvFormatDescriptorProperty -> Maybe (Value Text)
fileCompression :: CsvFormatDescriptorProperty -> Maybe (Value Text)
headerList :: CsvFormatDescriptorProperty -> Maybe (ValueList Text)
quoteSymbol :: CsvFormatDescriptorProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
charset :: Maybe (Value Text)
containsHeader :: Maybe (Value Bool)
delimiter :: Maybe (Value Text)
fileCompression :: Maybe (Value Text)
headerList :: Maybe (ValueList Text)
quoteSymbol :: Maybe (Value Text)
..}
    = CsvFormatDescriptorProperty
        {containsHeader :: Maybe (Value Bool)
containsHeader = Value Bool -> Maybe (Value Bool)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ContainsHeader" CsvFormatDescriptorProperty
Value Bool
newValue, Maybe (ValueList Text)
Maybe (Value Text)
()
haddock_workaround_ :: ()
charset :: Maybe (Value Text)
delimiter :: Maybe (Value Text)
fileCompression :: Maybe (Value Text)
headerList :: Maybe (ValueList Text)
quoteSymbol :: Maybe (Value Text)
haddock_workaround_ :: ()
charset :: Maybe (Value Text)
delimiter :: Maybe (Value Text)
fileCompression :: Maybe (Value Text)
headerList :: Maybe (ValueList Text)
quoteSymbol :: Maybe (Value Text)
..}
instance Property "Delimiter" CsvFormatDescriptorProperty where
  type PropertyType "Delimiter" CsvFormatDescriptorProperty = Value Prelude.Text
  set :: PropertyType "Delimiter" CsvFormatDescriptorProperty
-> CsvFormatDescriptorProperty -> CsvFormatDescriptorProperty
set PropertyType "Delimiter" CsvFormatDescriptorProperty
newValue CsvFormatDescriptorProperty {Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: CsvFormatDescriptorProperty -> ()
charset :: CsvFormatDescriptorProperty -> Maybe (Value Text)
containsHeader :: CsvFormatDescriptorProperty -> Maybe (Value Bool)
delimiter :: CsvFormatDescriptorProperty -> Maybe (Value Text)
fileCompression :: CsvFormatDescriptorProperty -> Maybe (Value Text)
headerList :: CsvFormatDescriptorProperty -> Maybe (ValueList Text)
quoteSymbol :: CsvFormatDescriptorProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
charset :: Maybe (Value Text)
containsHeader :: Maybe (Value Bool)
delimiter :: Maybe (Value Text)
fileCompression :: Maybe (Value Text)
headerList :: Maybe (ValueList Text)
quoteSymbol :: Maybe (Value Text)
..}
    = CsvFormatDescriptorProperty
        {delimiter :: Maybe (Value Text)
delimiter = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Delimiter" CsvFormatDescriptorProperty
Value Text
newValue, Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: ()
charset :: Maybe (Value Text)
containsHeader :: Maybe (Value Bool)
fileCompression :: Maybe (Value Text)
headerList :: Maybe (ValueList Text)
quoteSymbol :: Maybe (Value Text)
haddock_workaround_ :: ()
charset :: Maybe (Value Text)
containsHeader :: Maybe (Value Bool)
fileCompression :: Maybe (Value Text)
headerList :: Maybe (ValueList Text)
quoteSymbol :: Maybe (Value Text)
..}
instance Property "FileCompression" CsvFormatDescriptorProperty where
  type PropertyType "FileCompression" CsvFormatDescriptorProperty = Value Prelude.Text
  set :: PropertyType "FileCompression" CsvFormatDescriptorProperty
-> CsvFormatDescriptorProperty -> CsvFormatDescriptorProperty
set PropertyType "FileCompression" CsvFormatDescriptorProperty
newValue CsvFormatDescriptorProperty {Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: CsvFormatDescriptorProperty -> ()
charset :: CsvFormatDescriptorProperty -> Maybe (Value Text)
containsHeader :: CsvFormatDescriptorProperty -> Maybe (Value Bool)
delimiter :: CsvFormatDescriptorProperty -> Maybe (Value Text)
fileCompression :: CsvFormatDescriptorProperty -> Maybe (Value Text)
headerList :: CsvFormatDescriptorProperty -> Maybe (ValueList Text)
quoteSymbol :: CsvFormatDescriptorProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
charset :: Maybe (Value Text)
containsHeader :: Maybe (Value Bool)
delimiter :: Maybe (Value Text)
fileCompression :: Maybe (Value Text)
headerList :: Maybe (ValueList Text)
quoteSymbol :: Maybe (Value Text)
..}
    = CsvFormatDescriptorProperty
        {fileCompression :: Maybe (Value Text)
fileCompression = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "FileCompression" CsvFormatDescriptorProperty
Value Text
newValue, Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: ()
charset :: Maybe (Value Text)
containsHeader :: Maybe (Value Bool)
delimiter :: Maybe (Value Text)
headerList :: Maybe (ValueList Text)
quoteSymbol :: Maybe (Value Text)
haddock_workaround_ :: ()
charset :: Maybe (Value Text)
containsHeader :: Maybe (Value Bool)
delimiter :: Maybe (Value Text)
headerList :: Maybe (ValueList Text)
quoteSymbol :: Maybe (Value Text)
..}
instance Property "HeaderList" CsvFormatDescriptorProperty where
  type PropertyType "HeaderList" CsvFormatDescriptorProperty = ValueList Prelude.Text
  set :: PropertyType "HeaderList" CsvFormatDescriptorProperty
-> CsvFormatDescriptorProperty -> CsvFormatDescriptorProperty
set PropertyType "HeaderList" CsvFormatDescriptorProperty
newValue CsvFormatDescriptorProperty {Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: CsvFormatDescriptorProperty -> ()
charset :: CsvFormatDescriptorProperty -> Maybe (Value Text)
containsHeader :: CsvFormatDescriptorProperty -> Maybe (Value Bool)
delimiter :: CsvFormatDescriptorProperty -> Maybe (Value Text)
fileCompression :: CsvFormatDescriptorProperty -> Maybe (Value Text)
headerList :: CsvFormatDescriptorProperty -> Maybe (ValueList Text)
quoteSymbol :: CsvFormatDescriptorProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
charset :: Maybe (Value Text)
containsHeader :: Maybe (Value Bool)
delimiter :: Maybe (Value Text)
fileCompression :: Maybe (Value Text)
headerList :: Maybe (ValueList Text)
quoteSymbol :: Maybe (Value Text)
..}
    = CsvFormatDescriptorProperty
        {headerList :: Maybe (ValueList Text)
headerList = ValueList Text -> Maybe (ValueList Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "HeaderList" CsvFormatDescriptorProperty
ValueList Text
newValue, Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: ()
charset :: Maybe (Value Text)
containsHeader :: Maybe (Value Bool)
delimiter :: Maybe (Value Text)
fileCompression :: Maybe (Value Text)
quoteSymbol :: Maybe (Value Text)
haddock_workaround_ :: ()
charset :: Maybe (Value Text)
containsHeader :: Maybe (Value Bool)
delimiter :: Maybe (Value Text)
fileCompression :: Maybe (Value Text)
quoteSymbol :: Maybe (Value Text)
..}
instance Property "QuoteSymbol" CsvFormatDescriptorProperty where
  type PropertyType "QuoteSymbol" CsvFormatDescriptorProperty = Value Prelude.Text
  set :: PropertyType "QuoteSymbol" CsvFormatDescriptorProperty
-> CsvFormatDescriptorProperty -> CsvFormatDescriptorProperty
set PropertyType "QuoteSymbol" CsvFormatDescriptorProperty
newValue CsvFormatDescriptorProperty {Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: CsvFormatDescriptorProperty -> ()
charset :: CsvFormatDescriptorProperty -> Maybe (Value Text)
containsHeader :: CsvFormatDescriptorProperty -> Maybe (Value Bool)
delimiter :: CsvFormatDescriptorProperty -> Maybe (Value Text)
fileCompression :: CsvFormatDescriptorProperty -> Maybe (Value Text)
headerList :: CsvFormatDescriptorProperty -> Maybe (ValueList Text)
quoteSymbol :: CsvFormatDescriptorProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
charset :: Maybe (Value Text)
containsHeader :: Maybe (Value Bool)
delimiter :: Maybe (Value Text)
fileCompression :: Maybe (Value Text)
headerList :: Maybe (ValueList Text)
quoteSymbol :: Maybe (Value Text)
..}
    = CsvFormatDescriptorProperty
        {quoteSymbol :: Maybe (Value Text)
quoteSymbol = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "QuoteSymbol" CsvFormatDescriptorProperty
Value Text
newValue, Maybe (ValueList Text)
Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: ()
charset :: Maybe (Value Text)
containsHeader :: Maybe (Value Bool)
delimiter :: Maybe (Value Text)
fileCompression :: Maybe (Value Text)
headerList :: Maybe (ValueList Text)
haddock_workaround_ :: ()
charset :: Maybe (Value Text)
containsHeader :: Maybe (Value Bool)
delimiter :: Maybe (Value Text)
fileCompression :: Maybe (Value Text)
headerList :: Maybe (ValueList Text)
..}