module Stratosphere.FSx.DataRepositoryAssociation (
module Exports, DataRepositoryAssociation(..),
mkDataRepositoryAssociation
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.FSx.DataRepositoryAssociation.S3Property as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Tag
import Stratosphere.Value
data DataRepositoryAssociation
=
DataRepositoryAssociation {DataRepositoryAssociation -> ()
haddock_workaround_ :: (),
DataRepositoryAssociation -> Maybe (Value Bool)
batchImportMetaDataOnCreate :: (Prelude.Maybe (Value Prelude.Bool)),
DataRepositoryAssociation -> Value Text
dataRepositoryPath :: (Value Prelude.Text),
DataRepositoryAssociation -> Value Text
fileSystemId :: (Value Prelude.Text),
DataRepositoryAssociation -> Value Text
fileSystemPath :: (Value Prelude.Text),
DataRepositoryAssociation -> Maybe (Value Integer)
importedFileChunkSize :: (Prelude.Maybe (Value Prelude.Integer)),
DataRepositoryAssociation -> Maybe S3Property
s3 :: (Prelude.Maybe S3Property),
DataRepositoryAssociation -> Maybe [Tag]
tags :: (Prelude.Maybe [Tag])}
deriving stock (DataRepositoryAssociation -> DataRepositoryAssociation -> Bool
(DataRepositoryAssociation -> DataRepositoryAssociation -> Bool)
-> (DataRepositoryAssociation -> DataRepositoryAssociation -> Bool)
-> Eq DataRepositoryAssociation
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: DataRepositoryAssociation -> DataRepositoryAssociation -> Bool
== :: DataRepositoryAssociation -> DataRepositoryAssociation -> Bool
$c/= :: DataRepositoryAssociation -> DataRepositoryAssociation -> Bool
/= :: DataRepositoryAssociation -> DataRepositoryAssociation -> Bool
Prelude.Eq, Int -> DataRepositoryAssociation -> ShowS
[DataRepositoryAssociation] -> ShowS
DataRepositoryAssociation -> String
(Int -> DataRepositoryAssociation -> ShowS)
-> (DataRepositoryAssociation -> String)
-> ([DataRepositoryAssociation] -> ShowS)
-> Show DataRepositoryAssociation
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> DataRepositoryAssociation -> ShowS
showsPrec :: Int -> DataRepositoryAssociation -> ShowS
$cshow :: DataRepositoryAssociation -> String
show :: DataRepositoryAssociation -> String
$cshowList :: [DataRepositoryAssociation] -> ShowS
showList :: [DataRepositoryAssociation] -> ShowS
Prelude.Show)
mkDataRepositoryAssociation ::
Value Prelude.Text
-> Value Prelude.Text
-> Value Prelude.Text -> DataRepositoryAssociation
mkDataRepositoryAssociation :: Value Text -> Value Text -> Value Text -> DataRepositoryAssociation
mkDataRepositoryAssociation
Value Text
dataRepositoryPath
Value Text
fileSystemId
Value Text
fileSystemPath
= DataRepositoryAssociation
{haddock_workaround_ :: ()
haddock_workaround_ = (), dataRepositoryPath :: Value Text
dataRepositoryPath = Value Text
dataRepositoryPath,
fileSystemId :: Value Text
fileSystemId = Value Text
fileSystemId, fileSystemPath :: Value Text
fileSystemPath = Value Text
fileSystemPath,
batchImportMetaDataOnCreate :: Maybe (Value Bool)
batchImportMetaDataOnCreate = Maybe (Value Bool)
forall a. Maybe a
Prelude.Nothing,
importedFileChunkSize :: Maybe (Value Integer)
importedFileChunkSize = Maybe (Value Integer)
forall a. Maybe a
Prelude.Nothing, s3 :: Maybe S3Property
s3 = Maybe S3Property
forall a. Maybe a
Prelude.Nothing,
tags :: Maybe [Tag]
tags = Maybe [Tag]
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties DataRepositoryAssociation where
toResourceProperties :: DataRepositoryAssociation -> ResourceProperties
toResourceProperties DataRepositoryAssociation {Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe S3Property
()
Value Text
haddock_workaround_ :: DataRepositoryAssociation -> ()
batchImportMetaDataOnCreate :: DataRepositoryAssociation -> Maybe (Value Bool)
dataRepositoryPath :: DataRepositoryAssociation -> Value Text
fileSystemId :: DataRepositoryAssociation -> Value Text
fileSystemPath :: DataRepositoryAssociation -> Value Text
importedFileChunkSize :: DataRepositoryAssociation -> Maybe (Value Integer)
s3 :: DataRepositoryAssociation -> Maybe S3Property
tags :: DataRepositoryAssociation -> Maybe [Tag]
haddock_workaround_ :: ()
batchImportMetaDataOnCreate :: Maybe (Value Bool)
dataRepositoryPath :: Value Text
fileSystemId :: Value Text
fileSystemPath :: Value Text
importedFileChunkSize :: Maybe (Value Integer)
s3 :: Maybe S3Property
tags :: Maybe [Tag]
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::FSx::DataRepositoryAssociation",
supportsTags :: Bool
supportsTags = Bool
Prelude.True,
properties :: Object
properties = [Item Object] -> Object
forall l. IsList l => [Item l] -> l
Prelude.fromList
([(Key, Value)] -> [(Key, Value)] -> [(Key, Value)]
forall a. Semigroup a => a -> a -> a
(Prelude.<>)
[Key
"DataRepositoryPath" 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..= Value Text
dataRepositoryPath,
Key
"FileSystemId" 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..= Value Text
fileSystemId,
Key
"FileSystemPath" 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..= Value Text
fileSystemPath]
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[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
"BatchImportMetaDataOnCreate"
(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)
batchImportMetaDataOnCreate,
Key -> Value Integer -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ImportedFileChunkSize"
(Value Integer -> (Key, Value))
-> Maybe (Value Integer) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Integer)
importedFileChunkSize,
Key -> S3Property -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"S3" (S3Property -> (Key, Value))
-> Maybe S3Property -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe S3Property
s3,
Key -> [Tag] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Tags" ([Tag] -> (Key, Value)) -> Maybe [Tag] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [Tag]
tags]))}
instance JSON.ToJSON DataRepositoryAssociation where
toJSON :: DataRepositoryAssociation -> Value
toJSON DataRepositoryAssociation {Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe S3Property
()
Value Text
haddock_workaround_ :: DataRepositoryAssociation -> ()
batchImportMetaDataOnCreate :: DataRepositoryAssociation -> Maybe (Value Bool)
dataRepositoryPath :: DataRepositoryAssociation -> Value Text
fileSystemId :: DataRepositoryAssociation -> Value Text
fileSystemPath :: DataRepositoryAssociation -> Value Text
importedFileChunkSize :: DataRepositoryAssociation -> Maybe (Value Integer)
s3 :: DataRepositoryAssociation -> Maybe S3Property
tags :: DataRepositoryAssociation -> Maybe [Tag]
haddock_workaround_ :: ()
batchImportMetaDataOnCreate :: Maybe (Value Bool)
dataRepositoryPath :: Value Text
fileSystemId :: Value Text
fileSystemPath :: Value Text
importedFileChunkSize :: Maybe (Value Integer)
s3 :: Maybe S3Property
tags :: Maybe [Tag]
..}
= [(Key, Value)] -> Value
JSON.object
([Item [(Key, Value)]] -> [(Key, Value)]
forall l. IsList l => [Item l] -> l
Prelude.fromList
([(Key, Value)] -> [(Key, Value)] -> [(Key, Value)]
forall a. Semigroup a => a -> a -> a
(Prelude.<>)
[Key
"DataRepositoryPath" 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..= Value Text
dataRepositoryPath,
Key
"FileSystemId" 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..= Value Text
fileSystemId,
Key
"FileSystemPath" 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..= Value Text
fileSystemPath]
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[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
"BatchImportMetaDataOnCreate"
(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)
batchImportMetaDataOnCreate,
Key -> Value Integer -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ImportedFileChunkSize"
(Value Integer -> (Key, Value))
-> Maybe (Value Integer) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Integer)
importedFileChunkSize,
Key -> S3Property -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"S3" (S3Property -> (Key, Value))
-> Maybe S3Property -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe S3Property
s3,
Key -> [Tag] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Tags" ([Tag] -> (Key, Value)) -> Maybe [Tag] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [Tag]
tags])))
instance Property "BatchImportMetaDataOnCreate" DataRepositoryAssociation where
type PropertyType "BatchImportMetaDataOnCreate" DataRepositoryAssociation = Value Prelude.Bool
set :: PropertyType
"BatchImportMetaDataOnCreate" DataRepositoryAssociation
-> DataRepositoryAssociation -> DataRepositoryAssociation
set PropertyType
"BatchImportMetaDataOnCreate" DataRepositoryAssociation
newValue DataRepositoryAssociation {Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe S3Property
()
Value Text
haddock_workaround_ :: DataRepositoryAssociation -> ()
batchImportMetaDataOnCreate :: DataRepositoryAssociation -> Maybe (Value Bool)
dataRepositoryPath :: DataRepositoryAssociation -> Value Text
fileSystemId :: DataRepositoryAssociation -> Value Text
fileSystemPath :: DataRepositoryAssociation -> Value Text
importedFileChunkSize :: DataRepositoryAssociation -> Maybe (Value Integer)
s3 :: DataRepositoryAssociation -> Maybe S3Property
tags :: DataRepositoryAssociation -> Maybe [Tag]
haddock_workaround_ :: ()
batchImportMetaDataOnCreate :: Maybe (Value Bool)
dataRepositoryPath :: Value Text
fileSystemId :: Value Text
fileSystemPath :: Value Text
importedFileChunkSize :: Maybe (Value Integer)
s3 :: Maybe S3Property
tags :: Maybe [Tag]
..}
= DataRepositoryAssociation
{batchImportMetaDataOnCreate :: Maybe (Value Bool)
batchImportMetaDataOnCreate = Value Bool -> Maybe (Value Bool)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
"BatchImportMetaDataOnCreate" DataRepositoryAssociation
Value Bool
newValue, Maybe [Tag]
Maybe (Value Integer)
Maybe S3Property
()
Value Text
haddock_workaround_ :: ()
dataRepositoryPath :: Value Text
fileSystemId :: Value Text
fileSystemPath :: Value Text
importedFileChunkSize :: Maybe (Value Integer)
s3 :: Maybe S3Property
tags :: Maybe [Tag]
haddock_workaround_ :: ()
dataRepositoryPath :: Value Text
fileSystemId :: Value Text
fileSystemPath :: Value Text
importedFileChunkSize :: Maybe (Value Integer)
s3 :: Maybe S3Property
tags :: Maybe [Tag]
..}
instance Property "DataRepositoryPath" DataRepositoryAssociation where
type PropertyType "DataRepositoryPath" DataRepositoryAssociation = Value Prelude.Text
set :: PropertyType "DataRepositoryPath" DataRepositoryAssociation
-> DataRepositoryAssociation -> DataRepositoryAssociation
set PropertyType "DataRepositoryPath" DataRepositoryAssociation
newValue DataRepositoryAssociation {Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe S3Property
()
Value Text
haddock_workaround_ :: DataRepositoryAssociation -> ()
batchImportMetaDataOnCreate :: DataRepositoryAssociation -> Maybe (Value Bool)
dataRepositoryPath :: DataRepositoryAssociation -> Value Text
fileSystemId :: DataRepositoryAssociation -> Value Text
fileSystemPath :: DataRepositoryAssociation -> Value Text
importedFileChunkSize :: DataRepositoryAssociation -> Maybe (Value Integer)
s3 :: DataRepositoryAssociation -> Maybe S3Property
tags :: DataRepositoryAssociation -> Maybe [Tag]
haddock_workaround_ :: ()
batchImportMetaDataOnCreate :: Maybe (Value Bool)
dataRepositoryPath :: Value Text
fileSystemId :: Value Text
fileSystemPath :: Value Text
importedFileChunkSize :: Maybe (Value Integer)
s3 :: Maybe S3Property
tags :: Maybe [Tag]
..}
= DataRepositoryAssociation {dataRepositoryPath :: Value Text
dataRepositoryPath = PropertyType "DataRepositoryPath" DataRepositoryAssociation
Value Text
newValue, Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe S3Property
()
Value Text
haddock_workaround_ :: ()
batchImportMetaDataOnCreate :: Maybe (Value Bool)
fileSystemId :: Value Text
fileSystemPath :: Value Text
importedFileChunkSize :: Maybe (Value Integer)
s3 :: Maybe S3Property
tags :: Maybe [Tag]
haddock_workaround_ :: ()
batchImportMetaDataOnCreate :: Maybe (Value Bool)
fileSystemId :: Value Text
fileSystemPath :: Value Text
importedFileChunkSize :: Maybe (Value Integer)
s3 :: Maybe S3Property
tags :: Maybe [Tag]
..}
instance Property "FileSystemId" DataRepositoryAssociation where
type PropertyType "FileSystemId" DataRepositoryAssociation = Value Prelude.Text
set :: PropertyType "FileSystemId" DataRepositoryAssociation
-> DataRepositoryAssociation -> DataRepositoryAssociation
set PropertyType "FileSystemId" DataRepositoryAssociation
newValue DataRepositoryAssociation {Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe S3Property
()
Value Text
haddock_workaround_ :: DataRepositoryAssociation -> ()
batchImportMetaDataOnCreate :: DataRepositoryAssociation -> Maybe (Value Bool)
dataRepositoryPath :: DataRepositoryAssociation -> Value Text
fileSystemId :: DataRepositoryAssociation -> Value Text
fileSystemPath :: DataRepositoryAssociation -> Value Text
importedFileChunkSize :: DataRepositoryAssociation -> Maybe (Value Integer)
s3 :: DataRepositoryAssociation -> Maybe S3Property
tags :: DataRepositoryAssociation -> Maybe [Tag]
haddock_workaround_ :: ()
batchImportMetaDataOnCreate :: Maybe (Value Bool)
dataRepositoryPath :: Value Text
fileSystemId :: Value Text
fileSystemPath :: Value Text
importedFileChunkSize :: Maybe (Value Integer)
s3 :: Maybe S3Property
tags :: Maybe [Tag]
..}
= DataRepositoryAssociation {fileSystemId :: Value Text
fileSystemId = PropertyType "FileSystemId" DataRepositoryAssociation
Value Text
newValue, Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe S3Property
()
Value Text
haddock_workaround_ :: ()
batchImportMetaDataOnCreate :: Maybe (Value Bool)
dataRepositoryPath :: Value Text
fileSystemPath :: Value Text
importedFileChunkSize :: Maybe (Value Integer)
s3 :: Maybe S3Property
tags :: Maybe [Tag]
haddock_workaround_ :: ()
batchImportMetaDataOnCreate :: Maybe (Value Bool)
dataRepositoryPath :: Value Text
fileSystemPath :: Value Text
importedFileChunkSize :: Maybe (Value Integer)
s3 :: Maybe S3Property
tags :: Maybe [Tag]
..}
instance Property "FileSystemPath" DataRepositoryAssociation where
type PropertyType "FileSystemPath" DataRepositoryAssociation = Value Prelude.Text
set :: PropertyType "FileSystemPath" DataRepositoryAssociation
-> DataRepositoryAssociation -> DataRepositoryAssociation
set PropertyType "FileSystemPath" DataRepositoryAssociation
newValue DataRepositoryAssociation {Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe S3Property
()
Value Text
haddock_workaround_ :: DataRepositoryAssociation -> ()
batchImportMetaDataOnCreate :: DataRepositoryAssociation -> Maybe (Value Bool)
dataRepositoryPath :: DataRepositoryAssociation -> Value Text
fileSystemId :: DataRepositoryAssociation -> Value Text
fileSystemPath :: DataRepositoryAssociation -> Value Text
importedFileChunkSize :: DataRepositoryAssociation -> Maybe (Value Integer)
s3 :: DataRepositoryAssociation -> Maybe S3Property
tags :: DataRepositoryAssociation -> Maybe [Tag]
haddock_workaround_ :: ()
batchImportMetaDataOnCreate :: Maybe (Value Bool)
dataRepositoryPath :: Value Text
fileSystemId :: Value Text
fileSystemPath :: Value Text
importedFileChunkSize :: Maybe (Value Integer)
s3 :: Maybe S3Property
tags :: Maybe [Tag]
..}
= DataRepositoryAssociation {fileSystemPath :: Value Text
fileSystemPath = PropertyType "FileSystemPath" DataRepositoryAssociation
Value Text
newValue, Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe S3Property
()
Value Text
haddock_workaround_ :: ()
batchImportMetaDataOnCreate :: Maybe (Value Bool)
dataRepositoryPath :: Value Text
fileSystemId :: Value Text
importedFileChunkSize :: Maybe (Value Integer)
s3 :: Maybe S3Property
tags :: Maybe [Tag]
haddock_workaround_ :: ()
batchImportMetaDataOnCreate :: Maybe (Value Bool)
dataRepositoryPath :: Value Text
fileSystemId :: Value Text
importedFileChunkSize :: Maybe (Value Integer)
s3 :: Maybe S3Property
tags :: Maybe [Tag]
..}
instance Property "ImportedFileChunkSize" DataRepositoryAssociation where
type PropertyType "ImportedFileChunkSize" DataRepositoryAssociation = Value Prelude.Integer
set :: PropertyType "ImportedFileChunkSize" DataRepositoryAssociation
-> DataRepositoryAssociation -> DataRepositoryAssociation
set PropertyType "ImportedFileChunkSize" DataRepositoryAssociation
newValue DataRepositoryAssociation {Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe S3Property
()
Value Text
haddock_workaround_ :: DataRepositoryAssociation -> ()
batchImportMetaDataOnCreate :: DataRepositoryAssociation -> Maybe (Value Bool)
dataRepositoryPath :: DataRepositoryAssociation -> Value Text
fileSystemId :: DataRepositoryAssociation -> Value Text
fileSystemPath :: DataRepositoryAssociation -> Value Text
importedFileChunkSize :: DataRepositoryAssociation -> Maybe (Value Integer)
s3 :: DataRepositoryAssociation -> Maybe S3Property
tags :: DataRepositoryAssociation -> Maybe [Tag]
haddock_workaround_ :: ()
batchImportMetaDataOnCreate :: Maybe (Value Bool)
dataRepositoryPath :: Value Text
fileSystemId :: Value Text
fileSystemPath :: Value Text
importedFileChunkSize :: Maybe (Value Integer)
s3 :: Maybe S3Property
tags :: Maybe [Tag]
..}
= DataRepositoryAssociation
{importedFileChunkSize :: Maybe (Value Integer)
importedFileChunkSize = Value Integer -> Maybe (Value Integer)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ImportedFileChunkSize" DataRepositoryAssociation
Value Integer
newValue, Maybe [Tag]
Maybe (Value Bool)
Maybe S3Property
()
Value Text
haddock_workaround_ :: ()
batchImportMetaDataOnCreate :: Maybe (Value Bool)
dataRepositoryPath :: Value Text
fileSystemId :: Value Text
fileSystemPath :: Value Text
s3 :: Maybe S3Property
tags :: Maybe [Tag]
haddock_workaround_ :: ()
batchImportMetaDataOnCreate :: Maybe (Value Bool)
dataRepositoryPath :: Value Text
fileSystemId :: Value Text
fileSystemPath :: Value Text
s3 :: Maybe S3Property
tags :: Maybe [Tag]
..}
instance Property "S3" DataRepositoryAssociation where
type PropertyType "S3" DataRepositoryAssociation = S3Property
set :: PropertyType "S3" DataRepositoryAssociation
-> DataRepositoryAssociation -> DataRepositoryAssociation
set PropertyType "S3" DataRepositoryAssociation
newValue DataRepositoryAssociation {Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe S3Property
()
Value Text
haddock_workaround_ :: DataRepositoryAssociation -> ()
batchImportMetaDataOnCreate :: DataRepositoryAssociation -> Maybe (Value Bool)
dataRepositoryPath :: DataRepositoryAssociation -> Value Text
fileSystemId :: DataRepositoryAssociation -> Value Text
fileSystemPath :: DataRepositoryAssociation -> Value Text
importedFileChunkSize :: DataRepositoryAssociation -> Maybe (Value Integer)
s3 :: DataRepositoryAssociation -> Maybe S3Property
tags :: DataRepositoryAssociation -> Maybe [Tag]
haddock_workaround_ :: ()
batchImportMetaDataOnCreate :: Maybe (Value Bool)
dataRepositoryPath :: Value Text
fileSystemId :: Value Text
fileSystemPath :: Value Text
importedFileChunkSize :: Maybe (Value Integer)
s3 :: Maybe S3Property
tags :: Maybe [Tag]
..}
= DataRepositoryAssociation {s3 :: Maybe S3Property
s3 = S3Property -> Maybe S3Property
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "S3" DataRepositoryAssociation
S3Property
newValue, Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Integer)
()
Value Text
haddock_workaround_ :: ()
batchImportMetaDataOnCreate :: Maybe (Value Bool)
dataRepositoryPath :: Value Text
fileSystemId :: Value Text
fileSystemPath :: Value Text
importedFileChunkSize :: Maybe (Value Integer)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
batchImportMetaDataOnCreate :: Maybe (Value Bool)
dataRepositoryPath :: Value Text
fileSystemId :: Value Text
fileSystemPath :: Value Text
importedFileChunkSize :: Maybe (Value Integer)
tags :: Maybe [Tag]
..}
instance Property "Tags" DataRepositoryAssociation where
type PropertyType "Tags" DataRepositoryAssociation = [Tag]
set :: PropertyType "Tags" DataRepositoryAssociation
-> DataRepositoryAssociation -> DataRepositoryAssociation
set PropertyType "Tags" DataRepositoryAssociation
newValue DataRepositoryAssociation {Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe S3Property
()
Value Text
haddock_workaround_ :: DataRepositoryAssociation -> ()
batchImportMetaDataOnCreate :: DataRepositoryAssociation -> Maybe (Value Bool)
dataRepositoryPath :: DataRepositoryAssociation -> Value Text
fileSystemId :: DataRepositoryAssociation -> Value Text
fileSystemPath :: DataRepositoryAssociation -> Value Text
importedFileChunkSize :: DataRepositoryAssociation -> Maybe (Value Integer)
s3 :: DataRepositoryAssociation -> Maybe S3Property
tags :: DataRepositoryAssociation -> Maybe [Tag]
haddock_workaround_ :: ()
batchImportMetaDataOnCreate :: Maybe (Value Bool)
dataRepositoryPath :: Value Text
fileSystemId :: Value Text
fileSystemPath :: Value Text
importedFileChunkSize :: Maybe (Value Integer)
s3 :: Maybe S3Property
tags :: Maybe [Tag]
..}
= DataRepositoryAssociation {tags :: Maybe [Tag]
tags = [Tag] -> Maybe [Tag]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [Tag]
PropertyType "Tags" DataRepositoryAssociation
newValue, Maybe (Value Bool)
Maybe (Value Integer)
Maybe S3Property
()
Value Text
haddock_workaround_ :: ()
batchImportMetaDataOnCreate :: Maybe (Value Bool)
dataRepositoryPath :: Value Text
fileSystemId :: Value Text
fileSystemPath :: Value Text
importedFileChunkSize :: Maybe (Value Integer)
s3 :: Maybe S3Property
haddock_workaround_ :: ()
batchImportMetaDataOnCreate :: Maybe (Value Bool)
dataRepositoryPath :: Value Text
fileSystemId :: Value Text
fileSystemPath :: Value Text
importedFileChunkSize :: Maybe (Value Integer)
s3 :: Maybe S3Property
..}