module Stratosphere.FSx.FileSystem (
module Exports, FileSystem(..), mkFileSystem
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.FSx.FileSystem.LustreConfigurationProperty as Exports
import {-# SOURCE #-} Stratosphere.FSx.FileSystem.OntapConfigurationProperty as Exports
import {-# SOURCE #-} Stratosphere.FSx.FileSystem.OpenZFSConfigurationProperty as Exports
import {-# SOURCE #-} Stratosphere.FSx.FileSystem.WindowsConfigurationProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Tag
import Stratosphere.Value
data FileSystem
=
FileSystem {FileSystem -> ()
haddock_workaround_ :: (),
FileSystem -> Maybe (Value Text)
backupId :: (Prelude.Maybe (Value Prelude.Text)),
FileSystem -> Value Text
fileSystemType :: (Value Prelude.Text),
FileSystem -> Maybe (Value Text)
fileSystemTypeVersion :: (Prelude.Maybe (Value Prelude.Text)),
FileSystem -> Maybe (Value Text)
kmsKeyId :: (Prelude.Maybe (Value Prelude.Text)),
FileSystem -> Maybe LustreConfigurationProperty
lustreConfiguration :: (Prelude.Maybe LustreConfigurationProperty),
FileSystem -> Maybe (Value Text)
networkType :: (Prelude.Maybe (Value Prelude.Text)),
FileSystem -> Maybe OntapConfigurationProperty
ontapConfiguration :: (Prelude.Maybe OntapConfigurationProperty),
FileSystem -> Maybe OpenZFSConfigurationProperty
openZFSConfiguration :: (Prelude.Maybe OpenZFSConfigurationProperty),
FileSystem -> Maybe (ValueList Text)
securityGroupIds :: (Prelude.Maybe (ValueList Prelude.Text)),
FileSystem -> Maybe (Value Integer)
storageCapacity :: (Prelude.Maybe (Value Prelude.Integer)),
FileSystem -> Maybe (Value Text)
storageType :: (Prelude.Maybe (Value Prelude.Text)),
FileSystem -> ValueList Text
subnetIds :: (ValueList Prelude.Text),
FileSystem -> Maybe [Tag]
tags :: (Prelude.Maybe [Tag]),
FileSystem -> Maybe WindowsConfigurationProperty
windowsConfiguration :: (Prelude.Maybe WindowsConfigurationProperty)}
deriving stock (FileSystem -> FileSystem -> Bool
(FileSystem -> FileSystem -> Bool)
-> (FileSystem -> FileSystem -> Bool) -> Eq FileSystem
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: FileSystem -> FileSystem -> Bool
== :: FileSystem -> FileSystem -> Bool
$c/= :: FileSystem -> FileSystem -> Bool
/= :: FileSystem -> FileSystem -> Bool
Prelude.Eq, Int -> FileSystem -> ShowS
[FileSystem] -> ShowS
FileSystem -> String
(Int -> FileSystem -> ShowS)
-> (FileSystem -> String)
-> ([FileSystem] -> ShowS)
-> Show FileSystem
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> FileSystem -> ShowS
showsPrec :: Int -> FileSystem -> ShowS
$cshow :: FileSystem -> String
show :: FileSystem -> String
$cshowList :: [FileSystem] -> ShowS
showList :: [FileSystem] -> ShowS
Prelude.Show)
mkFileSystem ::
Value Prelude.Text -> ValueList Prelude.Text -> FileSystem
mkFileSystem :: Value Text -> ValueList Text -> FileSystem
mkFileSystem Value Text
fileSystemType ValueList Text
subnetIds
= FileSystem
{haddock_workaround_ :: ()
haddock_workaround_ = (), fileSystemType :: Value Text
fileSystemType = Value Text
fileSystemType,
subnetIds :: ValueList Text
subnetIds = ValueList Text
subnetIds, backupId :: Maybe (Value Text)
backupId = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
fileSystemTypeVersion :: Maybe (Value Text)
fileSystemTypeVersion = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
kmsKeyId :: Maybe (Value Text)
kmsKeyId = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, lustreConfiguration :: Maybe LustreConfigurationProperty
lustreConfiguration = Maybe LustreConfigurationProperty
forall a. Maybe a
Prelude.Nothing,
networkType :: Maybe (Value Text)
networkType = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
ontapConfiguration :: Maybe OntapConfigurationProperty
ontapConfiguration = Maybe OntapConfigurationProperty
forall a. Maybe a
Prelude.Nothing,
openZFSConfiguration :: Maybe OpenZFSConfigurationProperty
openZFSConfiguration = Maybe OpenZFSConfigurationProperty
forall a. Maybe a
Prelude.Nothing,
securityGroupIds :: Maybe (ValueList Text)
securityGroupIds = Maybe (ValueList Text)
forall a. Maybe a
Prelude.Nothing,
storageCapacity :: Maybe (Value Integer)
storageCapacity = Maybe (Value Integer)
forall a. Maybe a
Prelude.Nothing, storageType :: Maybe (Value Text)
storageType = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
tags :: Maybe [Tag]
tags = Maybe [Tag]
forall a. Maybe a
Prelude.Nothing, windowsConfiguration :: Maybe WindowsConfigurationProperty
windowsConfiguration = Maybe WindowsConfigurationProperty
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties FileSystem where
toResourceProperties :: FileSystem -> ResourceProperties
toResourceProperties FileSystem {Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
Maybe LustreConfigurationProperty
Maybe OntapConfigurationProperty
Maybe OpenZFSConfigurationProperty
Maybe WindowsConfigurationProperty
()
ValueList Text
Value Text
haddock_workaround_ :: FileSystem -> ()
backupId :: FileSystem -> Maybe (Value Text)
fileSystemType :: FileSystem -> Value Text
fileSystemTypeVersion :: FileSystem -> Maybe (Value Text)
kmsKeyId :: FileSystem -> Maybe (Value Text)
lustreConfiguration :: FileSystem -> Maybe LustreConfigurationProperty
networkType :: FileSystem -> Maybe (Value Text)
ontapConfiguration :: FileSystem -> Maybe OntapConfigurationProperty
openZFSConfiguration :: FileSystem -> Maybe OpenZFSConfigurationProperty
securityGroupIds :: FileSystem -> Maybe (ValueList Text)
storageCapacity :: FileSystem -> Maybe (Value Integer)
storageType :: FileSystem -> Maybe (Value Text)
subnetIds :: FileSystem -> ValueList Text
tags :: FileSystem -> Maybe [Tag]
windowsConfiguration :: FileSystem -> Maybe WindowsConfigurationProperty
haddock_workaround_ :: ()
backupId :: Maybe (Value Text)
fileSystemType :: Value Text
fileSystemTypeVersion :: Maybe (Value Text)
kmsKeyId :: Maybe (Value Text)
lustreConfiguration :: Maybe LustreConfigurationProperty
networkType :: Maybe (Value Text)
ontapConfiguration :: Maybe OntapConfigurationProperty
openZFSConfiguration :: Maybe OpenZFSConfigurationProperty
securityGroupIds :: Maybe (ValueList Text)
storageCapacity :: Maybe (Value Integer)
storageType :: Maybe (Value Text)
subnetIds :: ValueList Text
tags :: Maybe [Tag]
windowsConfiguration :: Maybe WindowsConfigurationProperty
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::FSx::FileSystem", 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
"FileSystemType" 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
fileSystemType,
Key
"SubnetIds" 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..= ValueList Text
subnetIds]
([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
"BackupId" (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)
backupId,
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
"FileSystemTypeVersion"
(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)
fileSystemTypeVersion,
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
"KmsKeyId" (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)
kmsKeyId,
Key -> LustreConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"LustreConfiguration" (LustreConfigurationProperty -> (Key, Value))
-> Maybe LustreConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe LustreConfigurationProperty
lustreConfiguration,
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
"NetworkType" (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)
networkType,
Key -> OntapConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"OntapConfiguration" (OntapConfigurationProperty -> (Key, Value))
-> Maybe OntapConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe OntapConfigurationProperty
ontapConfiguration,
Key -> OpenZFSConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"OpenZFSConfiguration" (OpenZFSConfigurationProperty -> (Key, Value))
-> Maybe OpenZFSConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe OpenZFSConfigurationProperty
openZFSConfiguration,
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
"SecurityGroupIds" (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)
securityGroupIds,
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
"StorageCapacity" (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)
storageCapacity,
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
"StorageType" (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)
storageType,
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,
Key -> WindowsConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"WindowsConfiguration"
(WindowsConfigurationProperty -> (Key, Value))
-> Maybe WindowsConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe WindowsConfigurationProperty
windowsConfiguration]))}
instance JSON.ToJSON FileSystem where
toJSON :: FileSystem -> Value
toJSON FileSystem {Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
Maybe LustreConfigurationProperty
Maybe OntapConfigurationProperty
Maybe OpenZFSConfigurationProperty
Maybe WindowsConfigurationProperty
()
ValueList Text
Value Text
haddock_workaround_ :: FileSystem -> ()
backupId :: FileSystem -> Maybe (Value Text)
fileSystemType :: FileSystem -> Value Text
fileSystemTypeVersion :: FileSystem -> Maybe (Value Text)
kmsKeyId :: FileSystem -> Maybe (Value Text)
lustreConfiguration :: FileSystem -> Maybe LustreConfigurationProperty
networkType :: FileSystem -> Maybe (Value Text)
ontapConfiguration :: FileSystem -> Maybe OntapConfigurationProperty
openZFSConfiguration :: FileSystem -> Maybe OpenZFSConfigurationProperty
securityGroupIds :: FileSystem -> Maybe (ValueList Text)
storageCapacity :: FileSystem -> Maybe (Value Integer)
storageType :: FileSystem -> Maybe (Value Text)
subnetIds :: FileSystem -> ValueList Text
tags :: FileSystem -> Maybe [Tag]
windowsConfiguration :: FileSystem -> Maybe WindowsConfigurationProperty
haddock_workaround_ :: ()
backupId :: Maybe (Value Text)
fileSystemType :: Value Text
fileSystemTypeVersion :: Maybe (Value Text)
kmsKeyId :: Maybe (Value Text)
lustreConfiguration :: Maybe LustreConfigurationProperty
networkType :: Maybe (Value Text)
ontapConfiguration :: Maybe OntapConfigurationProperty
openZFSConfiguration :: Maybe OpenZFSConfigurationProperty
securityGroupIds :: Maybe (ValueList Text)
storageCapacity :: Maybe (Value Integer)
storageType :: Maybe (Value Text)
subnetIds :: ValueList Text
tags :: Maybe [Tag]
windowsConfiguration :: Maybe WindowsConfigurationProperty
..}
= [(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
"FileSystemType" 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
fileSystemType,
Key
"SubnetIds" 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..= ValueList Text
subnetIds]
([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
"BackupId" (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)
backupId,
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
"FileSystemTypeVersion"
(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)
fileSystemTypeVersion,
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
"KmsKeyId" (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)
kmsKeyId,
Key -> LustreConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"LustreConfiguration" (LustreConfigurationProperty -> (Key, Value))
-> Maybe LustreConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe LustreConfigurationProperty
lustreConfiguration,
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
"NetworkType" (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)
networkType,
Key -> OntapConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"OntapConfiguration" (OntapConfigurationProperty -> (Key, Value))
-> Maybe OntapConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe OntapConfigurationProperty
ontapConfiguration,
Key -> OpenZFSConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"OpenZFSConfiguration" (OpenZFSConfigurationProperty -> (Key, Value))
-> Maybe OpenZFSConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe OpenZFSConfigurationProperty
openZFSConfiguration,
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
"SecurityGroupIds" (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)
securityGroupIds,
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
"StorageCapacity" (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)
storageCapacity,
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
"StorageType" (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)
storageType,
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,
Key -> WindowsConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"WindowsConfiguration"
(WindowsConfigurationProperty -> (Key, Value))
-> Maybe WindowsConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe WindowsConfigurationProperty
windowsConfiguration])))
instance Property "BackupId" FileSystem where
type PropertyType "BackupId" FileSystem = Value Prelude.Text
set :: PropertyType "BackupId" FileSystem -> FileSystem -> FileSystem
set PropertyType "BackupId" FileSystem
newValue FileSystem {Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
Maybe LustreConfigurationProperty
Maybe OntapConfigurationProperty
Maybe OpenZFSConfigurationProperty
Maybe WindowsConfigurationProperty
()
ValueList Text
Value Text
haddock_workaround_ :: FileSystem -> ()
backupId :: FileSystem -> Maybe (Value Text)
fileSystemType :: FileSystem -> Value Text
fileSystemTypeVersion :: FileSystem -> Maybe (Value Text)
kmsKeyId :: FileSystem -> Maybe (Value Text)
lustreConfiguration :: FileSystem -> Maybe LustreConfigurationProperty
networkType :: FileSystem -> Maybe (Value Text)
ontapConfiguration :: FileSystem -> Maybe OntapConfigurationProperty
openZFSConfiguration :: FileSystem -> Maybe OpenZFSConfigurationProperty
securityGroupIds :: FileSystem -> Maybe (ValueList Text)
storageCapacity :: FileSystem -> Maybe (Value Integer)
storageType :: FileSystem -> Maybe (Value Text)
subnetIds :: FileSystem -> ValueList Text
tags :: FileSystem -> Maybe [Tag]
windowsConfiguration :: FileSystem -> Maybe WindowsConfigurationProperty
haddock_workaround_ :: ()
backupId :: Maybe (Value Text)
fileSystemType :: Value Text
fileSystemTypeVersion :: Maybe (Value Text)
kmsKeyId :: Maybe (Value Text)
lustreConfiguration :: Maybe LustreConfigurationProperty
networkType :: Maybe (Value Text)
ontapConfiguration :: Maybe OntapConfigurationProperty
openZFSConfiguration :: Maybe OpenZFSConfigurationProperty
securityGroupIds :: Maybe (ValueList Text)
storageCapacity :: Maybe (Value Integer)
storageType :: Maybe (Value Text)
subnetIds :: ValueList Text
tags :: Maybe [Tag]
windowsConfiguration :: Maybe WindowsConfigurationProperty
..}
= FileSystem {backupId :: Maybe (Value Text)
backupId = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "BackupId" FileSystem
Value Text
newValue, Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
Maybe LustreConfigurationProperty
Maybe OntapConfigurationProperty
Maybe OpenZFSConfigurationProperty
Maybe WindowsConfigurationProperty
()
ValueList Text
Value Text
haddock_workaround_ :: ()
fileSystemType :: Value Text
fileSystemTypeVersion :: Maybe (Value Text)
kmsKeyId :: Maybe (Value Text)
lustreConfiguration :: Maybe LustreConfigurationProperty
networkType :: Maybe (Value Text)
ontapConfiguration :: Maybe OntapConfigurationProperty
openZFSConfiguration :: Maybe OpenZFSConfigurationProperty
securityGroupIds :: Maybe (ValueList Text)
storageCapacity :: Maybe (Value Integer)
storageType :: Maybe (Value Text)
subnetIds :: ValueList Text
tags :: Maybe [Tag]
windowsConfiguration :: Maybe WindowsConfigurationProperty
haddock_workaround_ :: ()
fileSystemType :: Value Text
fileSystemTypeVersion :: Maybe (Value Text)
kmsKeyId :: Maybe (Value Text)
lustreConfiguration :: Maybe LustreConfigurationProperty
networkType :: Maybe (Value Text)
ontapConfiguration :: Maybe OntapConfigurationProperty
openZFSConfiguration :: Maybe OpenZFSConfigurationProperty
securityGroupIds :: Maybe (ValueList Text)
storageCapacity :: Maybe (Value Integer)
storageType :: Maybe (Value Text)
subnetIds :: ValueList Text
tags :: Maybe [Tag]
windowsConfiguration :: Maybe WindowsConfigurationProperty
..}
instance Property "FileSystemType" FileSystem where
type PropertyType "FileSystemType" FileSystem = Value Prelude.Text
set :: PropertyType "FileSystemType" FileSystem
-> FileSystem -> FileSystem
set PropertyType "FileSystemType" FileSystem
newValue FileSystem {Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
Maybe LustreConfigurationProperty
Maybe OntapConfigurationProperty
Maybe OpenZFSConfigurationProperty
Maybe WindowsConfigurationProperty
()
ValueList Text
Value Text
haddock_workaround_ :: FileSystem -> ()
backupId :: FileSystem -> Maybe (Value Text)
fileSystemType :: FileSystem -> Value Text
fileSystemTypeVersion :: FileSystem -> Maybe (Value Text)
kmsKeyId :: FileSystem -> Maybe (Value Text)
lustreConfiguration :: FileSystem -> Maybe LustreConfigurationProperty
networkType :: FileSystem -> Maybe (Value Text)
ontapConfiguration :: FileSystem -> Maybe OntapConfigurationProperty
openZFSConfiguration :: FileSystem -> Maybe OpenZFSConfigurationProperty
securityGroupIds :: FileSystem -> Maybe (ValueList Text)
storageCapacity :: FileSystem -> Maybe (Value Integer)
storageType :: FileSystem -> Maybe (Value Text)
subnetIds :: FileSystem -> ValueList Text
tags :: FileSystem -> Maybe [Tag]
windowsConfiguration :: FileSystem -> Maybe WindowsConfigurationProperty
haddock_workaround_ :: ()
backupId :: Maybe (Value Text)
fileSystemType :: Value Text
fileSystemTypeVersion :: Maybe (Value Text)
kmsKeyId :: Maybe (Value Text)
lustreConfiguration :: Maybe LustreConfigurationProperty
networkType :: Maybe (Value Text)
ontapConfiguration :: Maybe OntapConfigurationProperty
openZFSConfiguration :: Maybe OpenZFSConfigurationProperty
securityGroupIds :: Maybe (ValueList Text)
storageCapacity :: Maybe (Value Integer)
storageType :: Maybe (Value Text)
subnetIds :: ValueList Text
tags :: Maybe [Tag]
windowsConfiguration :: Maybe WindowsConfigurationProperty
..}
= FileSystem {fileSystemType :: Value Text
fileSystemType = PropertyType "FileSystemType" FileSystem
Value Text
newValue, Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
Maybe LustreConfigurationProperty
Maybe OntapConfigurationProperty
Maybe OpenZFSConfigurationProperty
Maybe WindowsConfigurationProperty
()
ValueList Text
haddock_workaround_ :: ()
backupId :: Maybe (Value Text)
fileSystemTypeVersion :: Maybe (Value Text)
kmsKeyId :: Maybe (Value Text)
lustreConfiguration :: Maybe LustreConfigurationProperty
networkType :: Maybe (Value Text)
ontapConfiguration :: Maybe OntapConfigurationProperty
openZFSConfiguration :: Maybe OpenZFSConfigurationProperty
securityGroupIds :: Maybe (ValueList Text)
storageCapacity :: Maybe (Value Integer)
storageType :: Maybe (Value Text)
subnetIds :: ValueList Text
tags :: Maybe [Tag]
windowsConfiguration :: Maybe WindowsConfigurationProperty
haddock_workaround_ :: ()
backupId :: Maybe (Value Text)
fileSystemTypeVersion :: Maybe (Value Text)
kmsKeyId :: Maybe (Value Text)
lustreConfiguration :: Maybe LustreConfigurationProperty
networkType :: Maybe (Value Text)
ontapConfiguration :: Maybe OntapConfigurationProperty
openZFSConfiguration :: Maybe OpenZFSConfigurationProperty
securityGroupIds :: Maybe (ValueList Text)
storageCapacity :: Maybe (Value Integer)
storageType :: Maybe (Value Text)
subnetIds :: ValueList Text
tags :: Maybe [Tag]
windowsConfiguration :: Maybe WindowsConfigurationProperty
..}
instance Property "FileSystemTypeVersion" FileSystem where
type PropertyType "FileSystemTypeVersion" FileSystem = Value Prelude.Text
set :: PropertyType "FileSystemTypeVersion" FileSystem
-> FileSystem -> FileSystem
set PropertyType "FileSystemTypeVersion" FileSystem
newValue FileSystem {Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
Maybe LustreConfigurationProperty
Maybe OntapConfigurationProperty
Maybe OpenZFSConfigurationProperty
Maybe WindowsConfigurationProperty
()
ValueList Text
Value Text
haddock_workaround_ :: FileSystem -> ()
backupId :: FileSystem -> Maybe (Value Text)
fileSystemType :: FileSystem -> Value Text
fileSystemTypeVersion :: FileSystem -> Maybe (Value Text)
kmsKeyId :: FileSystem -> Maybe (Value Text)
lustreConfiguration :: FileSystem -> Maybe LustreConfigurationProperty
networkType :: FileSystem -> Maybe (Value Text)
ontapConfiguration :: FileSystem -> Maybe OntapConfigurationProperty
openZFSConfiguration :: FileSystem -> Maybe OpenZFSConfigurationProperty
securityGroupIds :: FileSystem -> Maybe (ValueList Text)
storageCapacity :: FileSystem -> Maybe (Value Integer)
storageType :: FileSystem -> Maybe (Value Text)
subnetIds :: FileSystem -> ValueList Text
tags :: FileSystem -> Maybe [Tag]
windowsConfiguration :: FileSystem -> Maybe WindowsConfigurationProperty
haddock_workaround_ :: ()
backupId :: Maybe (Value Text)
fileSystemType :: Value Text
fileSystemTypeVersion :: Maybe (Value Text)
kmsKeyId :: Maybe (Value Text)
lustreConfiguration :: Maybe LustreConfigurationProperty
networkType :: Maybe (Value Text)
ontapConfiguration :: Maybe OntapConfigurationProperty
openZFSConfiguration :: Maybe OpenZFSConfigurationProperty
securityGroupIds :: Maybe (ValueList Text)
storageCapacity :: Maybe (Value Integer)
storageType :: Maybe (Value Text)
subnetIds :: ValueList Text
tags :: Maybe [Tag]
windowsConfiguration :: Maybe WindowsConfigurationProperty
..}
= FileSystem {fileSystemTypeVersion :: Maybe (Value Text)
fileSystemTypeVersion = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "FileSystemTypeVersion" FileSystem
Value Text
newValue, Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
Maybe LustreConfigurationProperty
Maybe OntapConfigurationProperty
Maybe OpenZFSConfigurationProperty
Maybe WindowsConfigurationProperty
()
ValueList Text
Value Text
haddock_workaround_ :: ()
backupId :: Maybe (Value Text)
fileSystemType :: Value Text
kmsKeyId :: Maybe (Value Text)
lustreConfiguration :: Maybe LustreConfigurationProperty
networkType :: Maybe (Value Text)
ontapConfiguration :: Maybe OntapConfigurationProperty
openZFSConfiguration :: Maybe OpenZFSConfigurationProperty
securityGroupIds :: Maybe (ValueList Text)
storageCapacity :: Maybe (Value Integer)
storageType :: Maybe (Value Text)
subnetIds :: ValueList Text
tags :: Maybe [Tag]
windowsConfiguration :: Maybe WindowsConfigurationProperty
haddock_workaround_ :: ()
backupId :: Maybe (Value Text)
fileSystemType :: Value Text
kmsKeyId :: Maybe (Value Text)
lustreConfiguration :: Maybe LustreConfigurationProperty
networkType :: Maybe (Value Text)
ontapConfiguration :: Maybe OntapConfigurationProperty
openZFSConfiguration :: Maybe OpenZFSConfigurationProperty
securityGroupIds :: Maybe (ValueList Text)
storageCapacity :: Maybe (Value Integer)
storageType :: Maybe (Value Text)
subnetIds :: ValueList Text
tags :: Maybe [Tag]
windowsConfiguration :: Maybe WindowsConfigurationProperty
..}
instance Property "KmsKeyId" FileSystem where
type PropertyType "KmsKeyId" FileSystem = Value Prelude.Text
set :: PropertyType "KmsKeyId" FileSystem -> FileSystem -> FileSystem
set PropertyType "KmsKeyId" FileSystem
newValue FileSystem {Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
Maybe LustreConfigurationProperty
Maybe OntapConfigurationProperty
Maybe OpenZFSConfigurationProperty
Maybe WindowsConfigurationProperty
()
ValueList Text
Value Text
haddock_workaround_ :: FileSystem -> ()
backupId :: FileSystem -> Maybe (Value Text)
fileSystemType :: FileSystem -> Value Text
fileSystemTypeVersion :: FileSystem -> Maybe (Value Text)
kmsKeyId :: FileSystem -> Maybe (Value Text)
lustreConfiguration :: FileSystem -> Maybe LustreConfigurationProperty
networkType :: FileSystem -> Maybe (Value Text)
ontapConfiguration :: FileSystem -> Maybe OntapConfigurationProperty
openZFSConfiguration :: FileSystem -> Maybe OpenZFSConfigurationProperty
securityGroupIds :: FileSystem -> Maybe (ValueList Text)
storageCapacity :: FileSystem -> Maybe (Value Integer)
storageType :: FileSystem -> Maybe (Value Text)
subnetIds :: FileSystem -> ValueList Text
tags :: FileSystem -> Maybe [Tag]
windowsConfiguration :: FileSystem -> Maybe WindowsConfigurationProperty
haddock_workaround_ :: ()
backupId :: Maybe (Value Text)
fileSystemType :: Value Text
fileSystemTypeVersion :: Maybe (Value Text)
kmsKeyId :: Maybe (Value Text)
lustreConfiguration :: Maybe LustreConfigurationProperty
networkType :: Maybe (Value Text)
ontapConfiguration :: Maybe OntapConfigurationProperty
openZFSConfiguration :: Maybe OpenZFSConfigurationProperty
securityGroupIds :: Maybe (ValueList Text)
storageCapacity :: Maybe (Value Integer)
storageType :: Maybe (Value Text)
subnetIds :: ValueList Text
tags :: Maybe [Tag]
windowsConfiguration :: Maybe WindowsConfigurationProperty
..}
= FileSystem {kmsKeyId :: Maybe (Value Text)
kmsKeyId = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "KmsKeyId" FileSystem
Value Text
newValue, Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
Maybe LustreConfigurationProperty
Maybe OntapConfigurationProperty
Maybe OpenZFSConfigurationProperty
Maybe WindowsConfigurationProperty
()
ValueList Text
Value Text
haddock_workaround_ :: ()
backupId :: Maybe (Value Text)
fileSystemType :: Value Text
fileSystemTypeVersion :: Maybe (Value Text)
lustreConfiguration :: Maybe LustreConfigurationProperty
networkType :: Maybe (Value Text)
ontapConfiguration :: Maybe OntapConfigurationProperty
openZFSConfiguration :: Maybe OpenZFSConfigurationProperty
securityGroupIds :: Maybe (ValueList Text)
storageCapacity :: Maybe (Value Integer)
storageType :: Maybe (Value Text)
subnetIds :: ValueList Text
tags :: Maybe [Tag]
windowsConfiguration :: Maybe WindowsConfigurationProperty
haddock_workaround_ :: ()
backupId :: Maybe (Value Text)
fileSystemType :: Value Text
fileSystemTypeVersion :: Maybe (Value Text)
lustreConfiguration :: Maybe LustreConfigurationProperty
networkType :: Maybe (Value Text)
ontapConfiguration :: Maybe OntapConfigurationProperty
openZFSConfiguration :: Maybe OpenZFSConfigurationProperty
securityGroupIds :: Maybe (ValueList Text)
storageCapacity :: Maybe (Value Integer)
storageType :: Maybe (Value Text)
subnetIds :: ValueList Text
tags :: Maybe [Tag]
windowsConfiguration :: Maybe WindowsConfigurationProperty
..}
instance Property "LustreConfiguration" FileSystem where
type PropertyType "LustreConfiguration" FileSystem = LustreConfigurationProperty
set :: PropertyType "LustreConfiguration" FileSystem
-> FileSystem -> FileSystem
set PropertyType "LustreConfiguration" FileSystem
newValue FileSystem {Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
Maybe LustreConfigurationProperty
Maybe OntapConfigurationProperty
Maybe OpenZFSConfigurationProperty
Maybe WindowsConfigurationProperty
()
ValueList Text
Value Text
haddock_workaround_ :: FileSystem -> ()
backupId :: FileSystem -> Maybe (Value Text)
fileSystemType :: FileSystem -> Value Text
fileSystemTypeVersion :: FileSystem -> Maybe (Value Text)
kmsKeyId :: FileSystem -> Maybe (Value Text)
lustreConfiguration :: FileSystem -> Maybe LustreConfigurationProperty
networkType :: FileSystem -> Maybe (Value Text)
ontapConfiguration :: FileSystem -> Maybe OntapConfigurationProperty
openZFSConfiguration :: FileSystem -> Maybe OpenZFSConfigurationProperty
securityGroupIds :: FileSystem -> Maybe (ValueList Text)
storageCapacity :: FileSystem -> Maybe (Value Integer)
storageType :: FileSystem -> Maybe (Value Text)
subnetIds :: FileSystem -> ValueList Text
tags :: FileSystem -> Maybe [Tag]
windowsConfiguration :: FileSystem -> Maybe WindowsConfigurationProperty
haddock_workaround_ :: ()
backupId :: Maybe (Value Text)
fileSystemType :: Value Text
fileSystemTypeVersion :: Maybe (Value Text)
kmsKeyId :: Maybe (Value Text)
lustreConfiguration :: Maybe LustreConfigurationProperty
networkType :: Maybe (Value Text)
ontapConfiguration :: Maybe OntapConfigurationProperty
openZFSConfiguration :: Maybe OpenZFSConfigurationProperty
securityGroupIds :: Maybe (ValueList Text)
storageCapacity :: Maybe (Value Integer)
storageType :: Maybe (Value Text)
subnetIds :: ValueList Text
tags :: Maybe [Tag]
windowsConfiguration :: Maybe WindowsConfigurationProperty
..}
= FileSystem {lustreConfiguration :: Maybe LustreConfigurationProperty
lustreConfiguration = LustreConfigurationProperty -> Maybe LustreConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "LustreConfiguration" FileSystem
LustreConfigurationProperty
newValue, Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
Maybe OntapConfigurationProperty
Maybe OpenZFSConfigurationProperty
Maybe WindowsConfigurationProperty
()
ValueList Text
Value Text
haddock_workaround_ :: ()
backupId :: Maybe (Value Text)
fileSystemType :: Value Text
fileSystemTypeVersion :: Maybe (Value Text)
kmsKeyId :: Maybe (Value Text)
networkType :: Maybe (Value Text)
ontapConfiguration :: Maybe OntapConfigurationProperty
openZFSConfiguration :: Maybe OpenZFSConfigurationProperty
securityGroupIds :: Maybe (ValueList Text)
storageCapacity :: Maybe (Value Integer)
storageType :: Maybe (Value Text)
subnetIds :: ValueList Text
tags :: Maybe [Tag]
windowsConfiguration :: Maybe WindowsConfigurationProperty
haddock_workaround_ :: ()
backupId :: Maybe (Value Text)
fileSystemType :: Value Text
fileSystemTypeVersion :: Maybe (Value Text)
kmsKeyId :: Maybe (Value Text)
networkType :: Maybe (Value Text)
ontapConfiguration :: Maybe OntapConfigurationProperty
openZFSConfiguration :: Maybe OpenZFSConfigurationProperty
securityGroupIds :: Maybe (ValueList Text)
storageCapacity :: Maybe (Value Integer)
storageType :: Maybe (Value Text)
subnetIds :: ValueList Text
tags :: Maybe [Tag]
windowsConfiguration :: Maybe WindowsConfigurationProperty
..}
instance Property "NetworkType" FileSystem where
type PropertyType "NetworkType" FileSystem = Value Prelude.Text
set :: PropertyType "NetworkType" FileSystem -> FileSystem -> FileSystem
set PropertyType "NetworkType" FileSystem
newValue FileSystem {Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
Maybe LustreConfigurationProperty
Maybe OntapConfigurationProperty
Maybe OpenZFSConfigurationProperty
Maybe WindowsConfigurationProperty
()
ValueList Text
Value Text
haddock_workaround_ :: FileSystem -> ()
backupId :: FileSystem -> Maybe (Value Text)
fileSystemType :: FileSystem -> Value Text
fileSystemTypeVersion :: FileSystem -> Maybe (Value Text)
kmsKeyId :: FileSystem -> Maybe (Value Text)
lustreConfiguration :: FileSystem -> Maybe LustreConfigurationProperty
networkType :: FileSystem -> Maybe (Value Text)
ontapConfiguration :: FileSystem -> Maybe OntapConfigurationProperty
openZFSConfiguration :: FileSystem -> Maybe OpenZFSConfigurationProperty
securityGroupIds :: FileSystem -> Maybe (ValueList Text)
storageCapacity :: FileSystem -> Maybe (Value Integer)
storageType :: FileSystem -> Maybe (Value Text)
subnetIds :: FileSystem -> ValueList Text
tags :: FileSystem -> Maybe [Tag]
windowsConfiguration :: FileSystem -> Maybe WindowsConfigurationProperty
haddock_workaround_ :: ()
backupId :: Maybe (Value Text)
fileSystemType :: Value Text
fileSystemTypeVersion :: Maybe (Value Text)
kmsKeyId :: Maybe (Value Text)
lustreConfiguration :: Maybe LustreConfigurationProperty
networkType :: Maybe (Value Text)
ontapConfiguration :: Maybe OntapConfigurationProperty
openZFSConfiguration :: Maybe OpenZFSConfigurationProperty
securityGroupIds :: Maybe (ValueList Text)
storageCapacity :: Maybe (Value Integer)
storageType :: Maybe (Value Text)
subnetIds :: ValueList Text
tags :: Maybe [Tag]
windowsConfiguration :: Maybe WindowsConfigurationProperty
..}
= FileSystem {networkType :: Maybe (Value Text)
networkType = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "NetworkType" FileSystem
Value Text
newValue, Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
Maybe LustreConfigurationProperty
Maybe OntapConfigurationProperty
Maybe OpenZFSConfigurationProperty
Maybe WindowsConfigurationProperty
()
ValueList Text
Value Text
haddock_workaround_ :: ()
backupId :: Maybe (Value Text)
fileSystemType :: Value Text
fileSystemTypeVersion :: Maybe (Value Text)
kmsKeyId :: Maybe (Value Text)
lustreConfiguration :: Maybe LustreConfigurationProperty
ontapConfiguration :: Maybe OntapConfigurationProperty
openZFSConfiguration :: Maybe OpenZFSConfigurationProperty
securityGroupIds :: Maybe (ValueList Text)
storageCapacity :: Maybe (Value Integer)
storageType :: Maybe (Value Text)
subnetIds :: ValueList Text
tags :: Maybe [Tag]
windowsConfiguration :: Maybe WindowsConfigurationProperty
haddock_workaround_ :: ()
backupId :: Maybe (Value Text)
fileSystemType :: Value Text
fileSystemTypeVersion :: Maybe (Value Text)
kmsKeyId :: Maybe (Value Text)
lustreConfiguration :: Maybe LustreConfigurationProperty
ontapConfiguration :: Maybe OntapConfigurationProperty
openZFSConfiguration :: Maybe OpenZFSConfigurationProperty
securityGroupIds :: Maybe (ValueList Text)
storageCapacity :: Maybe (Value Integer)
storageType :: Maybe (Value Text)
subnetIds :: ValueList Text
tags :: Maybe [Tag]
windowsConfiguration :: Maybe WindowsConfigurationProperty
..}
instance Property "OntapConfiguration" FileSystem where
type PropertyType "OntapConfiguration" FileSystem = OntapConfigurationProperty
set :: PropertyType "OntapConfiguration" FileSystem
-> FileSystem -> FileSystem
set PropertyType "OntapConfiguration" FileSystem
newValue FileSystem {Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
Maybe LustreConfigurationProperty
Maybe OntapConfigurationProperty
Maybe OpenZFSConfigurationProperty
Maybe WindowsConfigurationProperty
()
ValueList Text
Value Text
haddock_workaround_ :: FileSystem -> ()
backupId :: FileSystem -> Maybe (Value Text)
fileSystemType :: FileSystem -> Value Text
fileSystemTypeVersion :: FileSystem -> Maybe (Value Text)
kmsKeyId :: FileSystem -> Maybe (Value Text)
lustreConfiguration :: FileSystem -> Maybe LustreConfigurationProperty
networkType :: FileSystem -> Maybe (Value Text)
ontapConfiguration :: FileSystem -> Maybe OntapConfigurationProperty
openZFSConfiguration :: FileSystem -> Maybe OpenZFSConfigurationProperty
securityGroupIds :: FileSystem -> Maybe (ValueList Text)
storageCapacity :: FileSystem -> Maybe (Value Integer)
storageType :: FileSystem -> Maybe (Value Text)
subnetIds :: FileSystem -> ValueList Text
tags :: FileSystem -> Maybe [Tag]
windowsConfiguration :: FileSystem -> Maybe WindowsConfigurationProperty
haddock_workaround_ :: ()
backupId :: Maybe (Value Text)
fileSystemType :: Value Text
fileSystemTypeVersion :: Maybe (Value Text)
kmsKeyId :: Maybe (Value Text)
lustreConfiguration :: Maybe LustreConfigurationProperty
networkType :: Maybe (Value Text)
ontapConfiguration :: Maybe OntapConfigurationProperty
openZFSConfiguration :: Maybe OpenZFSConfigurationProperty
securityGroupIds :: Maybe (ValueList Text)
storageCapacity :: Maybe (Value Integer)
storageType :: Maybe (Value Text)
subnetIds :: ValueList Text
tags :: Maybe [Tag]
windowsConfiguration :: Maybe WindowsConfigurationProperty
..}
= FileSystem {ontapConfiguration :: Maybe OntapConfigurationProperty
ontapConfiguration = OntapConfigurationProperty -> Maybe OntapConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "OntapConfiguration" FileSystem
OntapConfigurationProperty
newValue, Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
Maybe LustreConfigurationProperty
Maybe OpenZFSConfigurationProperty
Maybe WindowsConfigurationProperty
()
ValueList Text
Value Text
haddock_workaround_ :: ()
backupId :: Maybe (Value Text)
fileSystemType :: Value Text
fileSystemTypeVersion :: Maybe (Value Text)
kmsKeyId :: Maybe (Value Text)
lustreConfiguration :: Maybe LustreConfigurationProperty
networkType :: Maybe (Value Text)
openZFSConfiguration :: Maybe OpenZFSConfigurationProperty
securityGroupIds :: Maybe (ValueList Text)
storageCapacity :: Maybe (Value Integer)
storageType :: Maybe (Value Text)
subnetIds :: ValueList Text
tags :: Maybe [Tag]
windowsConfiguration :: Maybe WindowsConfigurationProperty
haddock_workaround_ :: ()
backupId :: Maybe (Value Text)
fileSystemType :: Value Text
fileSystemTypeVersion :: Maybe (Value Text)
kmsKeyId :: Maybe (Value Text)
lustreConfiguration :: Maybe LustreConfigurationProperty
networkType :: Maybe (Value Text)
openZFSConfiguration :: Maybe OpenZFSConfigurationProperty
securityGroupIds :: Maybe (ValueList Text)
storageCapacity :: Maybe (Value Integer)
storageType :: Maybe (Value Text)
subnetIds :: ValueList Text
tags :: Maybe [Tag]
windowsConfiguration :: Maybe WindowsConfigurationProperty
..}
instance Property "OpenZFSConfiguration" FileSystem where
type PropertyType "OpenZFSConfiguration" FileSystem = OpenZFSConfigurationProperty
set :: PropertyType "OpenZFSConfiguration" FileSystem
-> FileSystem -> FileSystem
set PropertyType "OpenZFSConfiguration" FileSystem
newValue FileSystem {Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
Maybe LustreConfigurationProperty
Maybe OntapConfigurationProperty
Maybe OpenZFSConfigurationProperty
Maybe WindowsConfigurationProperty
()
ValueList Text
Value Text
haddock_workaround_ :: FileSystem -> ()
backupId :: FileSystem -> Maybe (Value Text)
fileSystemType :: FileSystem -> Value Text
fileSystemTypeVersion :: FileSystem -> Maybe (Value Text)
kmsKeyId :: FileSystem -> Maybe (Value Text)
lustreConfiguration :: FileSystem -> Maybe LustreConfigurationProperty
networkType :: FileSystem -> Maybe (Value Text)
ontapConfiguration :: FileSystem -> Maybe OntapConfigurationProperty
openZFSConfiguration :: FileSystem -> Maybe OpenZFSConfigurationProperty
securityGroupIds :: FileSystem -> Maybe (ValueList Text)
storageCapacity :: FileSystem -> Maybe (Value Integer)
storageType :: FileSystem -> Maybe (Value Text)
subnetIds :: FileSystem -> ValueList Text
tags :: FileSystem -> Maybe [Tag]
windowsConfiguration :: FileSystem -> Maybe WindowsConfigurationProperty
haddock_workaround_ :: ()
backupId :: Maybe (Value Text)
fileSystemType :: Value Text
fileSystemTypeVersion :: Maybe (Value Text)
kmsKeyId :: Maybe (Value Text)
lustreConfiguration :: Maybe LustreConfigurationProperty
networkType :: Maybe (Value Text)
ontapConfiguration :: Maybe OntapConfigurationProperty
openZFSConfiguration :: Maybe OpenZFSConfigurationProperty
securityGroupIds :: Maybe (ValueList Text)
storageCapacity :: Maybe (Value Integer)
storageType :: Maybe (Value Text)
subnetIds :: ValueList Text
tags :: Maybe [Tag]
windowsConfiguration :: Maybe WindowsConfigurationProperty
..}
= FileSystem {openZFSConfiguration :: Maybe OpenZFSConfigurationProperty
openZFSConfiguration = OpenZFSConfigurationProperty -> Maybe OpenZFSConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "OpenZFSConfiguration" FileSystem
OpenZFSConfigurationProperty
newValue, Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
Maybe LustreConfigurationProperty
Maybe OntapConfigurationProperty
Maybe WindowsConfigurationProperty
()
ValueList Text
Value Text
haddock_workaround_ :: ()
backupId :: Maybe (Value Text)
fileSystemType :: Value Text
fileSystemTypeVersion :: Maybe (Value Text)
kmsKeyId :: Maybe (Value Text)
lustreConfiguration :: Maybe LustreConfigurationProperty
networkType :: Maybe (Value Text)
ontapConfiguration :: Maybe OntapConfigurationProperty
securityGroupIds :: Maybe (ValueList Text)
storageCapacity :: Maybe (Value Integer)
storageType :: Maybe (Value Text)
subnetIds :: ValueList Text
tags :: Maybe [Tag]
windowsConfiguration :: Maybe WindowsConfigurationProperty
haddock_workaround_ :: ()
backupId :: Maybe (Value Text)
fileSystemType :: Value Text
fileSystemTypeVersion :: Maybe (Value Text)
kmsKeyId :: Maybe (Value Text)
lustreConfiguration :: Maybe LustreConfigurationProperty
networkType :: Maybe (Value Text)
ontapConfiguration :: Maybe OntapConfigurationProperty
securityGroupIds :: Maybe (ValueList Text)
storageCapacity :: Maybe (Value Integer)
storageType :: Maybe (Value Text)
subnetIds :: ValueList Text
tags :: Maybe [Tag]
windowsConfiguration :: Maybe WindowsConfigurationProperty
..}
instance Property "SecurityGroupIds" FileSystem where
type PropertyType "SecurityGroupIds" FileSystem = ValueList Prelude.Text
set :: PropertyType "SecurityGroupIds" FileSystem
-> FileSystem -> FileSystem
set PropertyType "SecurityGroupIds" FileSystem
newValue FileSystem {Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
Maybe LustreConfigurationProperty
Maybe OntapConfigurationProperty
Maybe OpenZFSConfigurationProperty
Maybe WindowsConfigurationProperty
()
ValueList Text
Value Text
haddock_workaround_ :: FileSystem -> ()
backupId :: FileSystem -> Maybe (Value Text)
fileSystemType :: FileSystem -> Value Text
fileSystemTypeVersion :: FileSystem -> Maybe (Value Text)
kmsKeyId :: FileSystem -> Maybe (Value Text)
lustreConfiguration :: FileSystem -> Maybe LustreConfigurationProperty
networkType :: FileSystem -> Maybe (Value Text)
ontapConfiguration :: FileSystem -> Maybe OntapConfigurationProperty
openZFSConfiguration :: FileSystem -> Maybe OpenZFSConfigurationProperty
securityGroupIds :: FileSystem -> Maybe (ValueList Text)
storageCapacity :: FileSystem -> Maybe (Value Integer)
storageType :: FileSystem -> Maybe (Value Text)
subnetIds :: FileSystem -> ValueList Text
tags :: FileSystem -> Maybe [Tag]
windowsConfiguration :: FileSystem -> Maybe WindowsConfigurationProperty
haddock_workaround_ :: ()
backupId :: Maybe (Value Text)
fileSystemType :: Value Text
fileSystemTypeVersion :: Maybe (Value Text)
kmsKeyId :: Maybe (Value Text)
lustreConfiguration :: Maybe LustreConfigurationProperty
networkType :: Maybe (Value Text)
ontapConfiguration :: Maybe OntapConfigurationProperty
openZFSConfiguration :: Maybe OpenZFSConfigurationProperty
securityGroupIds :: Maybe (ValueList Text)
storageCapacity :: Maybe (Value Integer)
storageType :: Maybe (Value Text)
subnetIds :: ValueList Text
tags :: Maybe [Tag]
windowsConfiguration :: Maybe WindowsConfigurationProperty
..}
= FileSystem {securityGroupIds :: Maybe (ValueList Text)
securityGroupIds = ValueList Text -> Maybe (ValueList Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "SecurityGroupIds" FileSystem
ValueList Text
newValue, Maybe [Tag]
Maybe (Value Integer)
Maybe (Value Text)
Maybe LustreConfigurationProperty
Maybe OntapConfigurationProperty
Maybe OpenZFSConfigurationProperty
Maybe WindowsConfigurationProperty
()
ValueList Text
Value Text
haddock_workaround_ :: ()
backupId :: Maybe (Value Text)
fileSystemType :: Value Text
fileSystemTypeVersion :: Maybe (Value Text)
kmsKeyId :: Maybe (Value Text)
lustreConfiguration :: Maybe LustreConfigurationProperty
networkType :: Maybe (Value Text)
ontapConfiguration :: Maybe OntapConfigurationProperty
openZFSConfiguration :: Maybe OpenZFSConfigurationProperty
storageCapacity :: Maybe (Value Integer)
storageType :: Maybe (Value Text)
subnetIds :: ValueList Text
tags :: Maybe [Tag]
windowsConfiguration :: Maybe WindowsConfigurationProperty
haddock_workaround_ :: ()
backupId :: Maybe (Value Text)
fileSystemType :: Value Text
fileSystemTypeVersion :: Maybe (Value Text)
kmsKeyId :: Maybe (Value Text)
lustreConfiguration :: Maybe LustreConfigurationProperty
networkType :: Maybe (Value Text)
ontapConfiguration :: Maybe OntapConfigurationProperty
openZFSConfiguration :: Maybe OpenZFSConfigurationProperty
storageCapacity :: Maybe (Value Integer)
storageType :: Maybe (Value Text)
subnetIds :: ValueList Text
tags :: Maybe [Tag]
windowsConfiguration :: Maybe WindowsConfigurationProperty
..}
instance Property "StorageCapacity" FileSystem where
type PropertyType "StorageCapacity" FileSystem = Value Prelude.Integer
set :: PropertyType "StorageCapacity" FileSystem
-> FileSystem -> FileSystem
set PropertyType "StorageCapacity" FileSystem
newValue FileSystem {Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
Maybe LustreConfigurationProperty
Maybe OntapConfigurationProperty
Maybe OpenZFSConfigurationProperty
Maybe WindowsConfigurationProperty
()
ValueList Text
Value Text
haddock_workaround_ :: FileSystem -> ()
backupId :: FileSystem -> Maybe (Value Text)
fileSystemType :: FileSystem -> Value Text
fileSystemTypeVersion :: FileSystem -> Maybe (Value Text)
kmsKeyId :: FileSystem -> Maybe (Value Text)
lustreConfiguration :: FileSystem -> Maybe LustreConfigurationProperty
networkType :: FileSystem -> Maybe (Value Text)
ontapConfiguration :: FileSystem -> Maybe OntapConfigurationProperty
openZFSConfiguration :: FileSystem -> Maybe OpenZFSConfigurationProperty
securityGroupIds :: FileSystem -> Maybe (ValueList Text)
storageCapacity :: FileSystem -> Maybe (Value Integer)
storageType :: FileSystem -> Maybe (Value Text)
subnetIds :: FileSystem -> ValueList Text
tags :: FileSystem -> Maybe [Tag]
windowsConfiguration :: FileSystem -> Maybe WindowsConfigurationProperty
haddock_workaround_ :: ()
backupId :: Maybe (Value Text)
fileSystemType :: Value Text
fileSystemTypeVersion :: Maybe (Value Text)
kmsKeyId :: Maybe (Value Text)
lustreConfiguration :: Maybe LustreConfigurationProperty
networkType :: Maybe (Value Text)
ontapConfiguration :: Maybe OntapConfigurationProperty
openZFSConfiguration :: Maybe OpenZFSConfigurationProperty
securityGroupIds :: Maybe (ValueList Text)
storageCapacity :: Maybe (Value Integer)
storageType :: Maybe (Value Text)
subnetIds :: ValueList Text
tags :: Maybe [Tag]
windowsConfiguration :: Maybe WindowsConfigurationProperty
..}
= FileSystem {storageCapacity :: Maybe (Value Integer)
storageCapacity = Value Integer -> Maybe (Value Integer)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "StorageCapacity" FileSystem
Value Integer
newValue, Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Text)
Maybe LustreConfigurationProperty
Maybe OntapConfigurationProperty
Maybe OpenZFSConfigurationProperty
Maybe WindowsConfigurationProperty
()
ValueList Text
Value Text
haddock_workaround_ :: ()
backupId :: Maybe (Value Text)
fileSystemType :: Value Text
fileSystemTypeVersion :: Maybe (Value Text)
kmsKeyId :: Maybe (Value Text)
lustreConfiguration :: Maybe LustreConfigurationProperty
networkType :: Maybe (Value Text)
ontapConfiguration :: Maybe OntapConfigurationProperty
openZFSConfiguration :: Maybe OpenZFSConfigurationProperty
securityGroupIds :: Maybe (ValueList Text)
storageType :: Maybe (Value Text)
subnetIds :: ValueList Text
tags :: Maybe [Tag]
windowsConfiguration :: Maybe WindowsConfigurationProperty
haddock_workaround_ :: ()
backupId :: Maybe (Value Text)
fileSystemType :: Value Text
fileSystemTypeVersion :: Maybe (Value Text)
kmsKeyId :: Maybe (Value Text)
lustreConfiguration :: Maybe LustreConfigurationProperty
networkType :: Maybe (Value Text)
ontapConfiguration :: Maybe OntapConfigurationProperty
openZFSConfiguration :: Maybe OpenZFSConfigurationProperty
securityGroupIds :: Maybe (ValueList Text)
storageType :: Maybe (Value Text)
subnetIds :: ValueList Text
tags :: Maybe [Tag]
windowsConfiguration :: Maybe WindowsConfigurationProperty
..}
instance Property "StorageType" FileSystem where
type PropertyType "StorageType" FileSystem = Value Prelude.Text
set :: PropertyType "StorageType" FileSystem -> FileSystem -> FileSystem
set PropertyType "StorageType" FileSystem
newValue FileSystem {Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
Maybe LustreConfigurationProperty
Maybe OntapConfigurationProperty
Maybe OpenZFSConfigurationProperty
Maybe WindowsConfigurationProperty
()
ValueList Text
Value Text
haddock_workaround_ :: FileSystem -> ()
backupId :: FileSystem -> Maybe (Value Text)
fileSystemType :: FileSystem -> Value Text
fileSystemTypeVersion :: FileSystem -> Maybe (Value Text)
kmsKeyId :: FileSystem -> Maybe (Value Text)
lustreConfiguration :: FileSystem -> Maybe LustreConfigurationProperty
networkType :: FileSystem -> Maybe (Value Text)
ontapConfiguration :: FileSystem -> Maybe OntapConfigurationProperty
openZFSConfiguration :: FileSystem -> Maybe OpenZFSConfigurationProperty
securityGroupIds :: FileSystem -> Maybe (ValueList Text)
storageCapacity :: FileSystem -> Maybe (Value Integer)
storageType :: FileSystem -> Maybe (Value Text)
subnetIds :: FileSystem -> ValueList Text
tags :: FileSystem -> Maybe [Tag]
windowsConfiguration :: FileSystem -> Maybe WindowsConfigurationProperty
haddock_workaround_ :: ()
backupId :: Maybe (Value Text)
fileSystemType :: Value Text
fileSystemTypeVersion :: Maybe (Value Text)
kmsKeyId :: Maybe (Value Text)
lustreConfiguration :: Maybe LustreConfigurationProperty
networkType :: Maybe (Value Text)
ontapConfiguration :: Maybe OntapConfigurationProperty
openZFSConfiguration :: Maybe OpenZFSConfigurationProperty
securityGroupIds :: Maybe (ValueList Text)
storageCapacity :: Maybe (Value Integer)
storageType :: Maybe (Value Text)
subnetIds :: ValueList Text
tags :: Maybe [Tag]
windowsConfiguration :: Maybe WindowsConfigurationProperty
..}
= FileSystem {storageType :: Maybe (Value Text)
storageType = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "StorageType" FileSystem
Value Text
newValue, Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
Maybe LustreConfigurationProperty
Maybe OntapConfigurationProperty
Maybe OpenZFSConfigurationProperty
Maybe WindowsConfigurationProperty
()
ValueList Text
Value Text
haddock_workaround_ :: ()
backupId :: Maybe (Value Text)
fileSystemType :: Value Text
fileSystemTypeVersion :: Maybe (Value Text)
kmsKeyId :: Maybe (Value Text)
lustreConfiguration :: Maybe LustreConfigurationProperty
networkType :: Maybe (Value Text)
ontapConfiguration :: Maybe OntapConfigurationProperty
openZFSConfiguration :: Maybe OpenZFSConfigurationProperty
securityGroupIds :: Maybe (ValueList Text)
storageCapacity :: Maybe (Value Integer)
subnetIds :: ValueList Text
tags :: Maybe [Tag]
windowsConfiguration :: Maybe WindowsConfigurationProperty
haddock_workaround_ :: ()
backupId :: Maybe (Value Text)
fileSystemType :: Value Text
fileSystemTypeVersion :: Maybe (Value Text)
kmsKeyId :: Maybe (Value Text)
lustreConfiguration :: Maybe LustreConfigurationProperty
networkType :: Maybe (Value Text)
ontapConfiguration :: Maybe OntapConfigurationProperty
openZFSConfiguration :: Maybe OpenZFSConfigurationProperty
securityGroupIds :: Maybe (ValueList Text)
storageCapacity :: Maybe (Value Integer)
subnetIds :: ValueList Text
tags :: Maybe [Tag]
windowsConfiguration :: Maybe WindowsConfigurationProperty
..}
instance Property "SubnetIds" FileSystem where
type PropertyType "SubnetIds" FileSystem = ValueList Prelude.Text
set :: PropertyType "SubnetIds" FileSystem -> FileSystem -> FileSystem
set PropertyType "SubnetIds" FileSystem
newValue FileSystem {Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
Maybe LustreConfigurationProperty
Maybe OntapConfigurationProperty
Maybe OpenZFSConfigurationProperty
Maybe WindowsConfigurationProperty
()
ValueList Text
Value Text
haddock_workaround_ :: FileSystem -> ()
backupId :: FileSystem -> Maybe (Value Text)
fileSystemType :: FileSystem -> Value Text
fileSystemTypeVersion :: FileSystem -> Maybe (Value Text)
kmsKeyId :: FileSystem -> Maybe (Value Text)
lustreConfiguration :: FileSystem -> Maybe LustreConfigurationProperty
networkType :: FileSystem -> Maybe (Value Text)
ontapConfiguration :: FileSystem -> Maybe OntapConfigurationProperty
openZFSConfiguration :: FileSystem -> Maybe OpenZFSConfigurationProperty
securityGroupIds :: FileSystem -> Maybe (ValueList Text)
storageCapacity :: FileSystem -> Maybe (Value Integer)
storageType :: FileSystem -> Maybe (Value Text)
subnetIds :: FileSystem -> ValueList Text
tags :: FileSystem -> Maybe [Tag]
windowsConfiguration :: FileSystem -> Maybe WindowsConfigurationProperty
haddock_workaround_ :: ()
backupId :: Maybe (Value Text)
fileSystemType :: Value Text
fileSystemTypeVersion :: Maybe (Value Text)
kmsKeyId :: Maybe (Value Text)
lustreConfiguration :: Maybe LustreConfigurationProperty
networkType :: Maybe (Value Text)
ontapConfiguration :: Maybe OntapConfigurationProperty
openZFSConfiguration :: Maybe OpenZFSConfigurationProperty
securityGroupIds :: Maybe (ValueList Text)
storageCapacity :: Maybe (Value Integer)
storageType :: Maybe (Value Text)
subnetIds :: ValueList Text
tags :: Maybe [Tag]
windowsConfiguration :: Maybe WindowsConfigurationProperty
..}
= FileSystem {subnetIds :: ValueList Text
subnetIds = PropertyType "SubnetIds" FileSystem
ValueList Text
newValue, Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
Maybe LustreConfigurationProperty
Maybe OntapConfigurationProperty
Maybe OpenZFSConfigurationProperty
Maybe WindowsConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
backupId :: Maybe (Value Text)
fileSystemType :: Value Text
fileSystemTypeVersion :: Maybe (Value Text)
kmsKeyId :: Maybe (Value Text)
lustreConfiguration :: Maybe LustreConfigurationProperty
networkType :: Maybe (Value Text)
ontapConfiguration :: Maybe OntapConfigurationProperty
openZFSConfiguration :: Maybe OpenZFSConfigurationProperty
securityGroupIds :: Maybe (ValueList Text)
storageCapacity :: Maybe (Value Integer)
storageType :: Maybe (Value Text)
tags :: Maybe [Tag]
windowsConfiguration :: Maybe WindowsConfigurationProperty
haddock_workaround_ :: ()
backupId :: Maybe (Value Text)
fileSystemType :: Value Text
fileSystemTypeVersion :: Maybe (Value Text)
kmsKeyId :: Maybe (Value Text)
lustreConfiguration :: Maybe LustreConfigurationProperty
networkType :: Maybe (Value Text)
ontapConfiguration :: Maybe OntapConfigurationProperty
openZFSConfiguration :: Maybe OpenZFSConfigurationProperty
securityGroupIds :: Maybe (ValueList Text)
storageCapacity :: Maybe (Value Integer)
storageType :: Maybe (Value Text)
tags :: Maybe [Tag]
windowsConfiguration :: Maybe WindowsConfigurationProperty
..}
instance Property "Tags" FileSystem where
type PropertyType "Tags" FileSystem = [Tag]
set :: PropertyType "Tags" FileSystem -> FileSystem -> FileSystem
set PropertyType "Tags" FileSystem
newValue FileSystem {Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
Maybe LustreConfigurationProperty
Maybe OntapConfigurationProperty
Maybe OpenZFSConfigurationProperty
Maybe WindowsConfigurationProperty
()
ValueList Text
Value Text
haddock_workaround_ :: FileSystem -> ()
backupId :: FileSystem -> Maybe (Value Text)
fileSystemType :: FileSystem -> Value Text
fileSystemTypeVersion :: FileSystem -> Maybe (Value Text)
kmsKeyId :: FileSystem -> Maybe (Value Text)
lustreConfiguration :: FileSystem -> Maybe LustreConfigurationProperty
networkType :: FileSystem -> Maybe (Value Text)
ontapConfiguration :: FileSystem -> Maybe OntapConfigurationProperty
openZFSConfiguration :: FileSystem -> Maybe OpenZFSConfigurationProperty
securityGroupIds :: FileSystem -> Maybe (ValueList Text)
storageCapacity :: FileSystem -> Maybe (Value Integer)
storageType :: FileSystem -> Maybe (Value Text)
subnetIds :: FileSystem -> ValueList Text
tags :: FileSystem -> Maybe [Tag]
windowsConfiguration :: FileSystem -> Maybe WindowsConfigurationProperty
haddock_workaround_ :: ()
backupId :: Maybe (Value Text)
fileSystemType :: Value Text
fileSystemTypeVersion :: Maybe (Value Text)
kmsKeyId :: Maybe (Value Text)
lustreConfiguration :: Maybe LustreConfigurationProperty
networkType :: Maybe (Value Text)
ontapConfiguration :: Maybe OntapConfigurationProperty
openZFSConfiguration :: Maybe OpenZFSConfigurationProperty
securityGroupIds :: Maybe (ValueList Text)
storageCapacity :: Maybe (Value Integer)
storageType :: Maybe (Value Text)
subnetIds :: ValueList Text
tags :: Maybe [Tag]
windowsConfiguration :: Maybe WindowsConfigurationProperty
..}
= FileSystem {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" FileSystem
newValue, Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
Maybe LustreConfigurationProperty
Maybe OntapConfigurationProperty
Maybe OpenZFSConfigurationProperty
Maybe WindowsConfigurationProperty
()
ValueList Text
Value Text
haddock_workaround_ :: ()
backupId :: Maybe (Value Text)
fileSystemType :: Value Text
fileSystemTypeVersion :: Maybe (Value Text)
kmsKeyId :: Maybe (Value Text)
lustreConfiguration :: Maybe LustreConfigurationProperty
networkType :: Maybe (Value Text)
ontapConfiguration :: Maybe OntapConfigurationProperty
openZFSConfiguration :: Maybe OpenZFSConfigurationProperty
securityGroupIds :: Maybe (ValueList Text)
storageCapacity :: Maybe (Value Integer)
storageType :: Maybe (Value Text)
subnetIds :: ValueList Text
windowsConfiguration :: Maybe WindowsConfigurationProperty
haddock_workaround_ :: ()
backupId :: Maybe (Value Text)
fileSystemType :: Value Text
fileSystemTypeVersion :: Maybe (Value Text)
kmsKeyId :: Maybe (Value Text)
lustreConfiguration :: Maybe LustreConfigurationProperty
networkType :: Maybe (Value Text)
ontapConfiguration :: Maybe OntapConfigurationProperty
openZFSConfiguration :: Maybe OpenZFSConfigurationProperty
securityGroupIds :: Maybe (ValueList Text)
storageCapacity :: Maybe (Value Integer)
storageType :: Maybe (Value Text)
subnetIds :: ValueList Text
windowsConfiguration :: Maybe WindowsConfigurationProperty
..}
instance Property "WindowsConfiguration" FileSystem where
type PropertyType "WindowsConfiguration" FileSystem = WindowsConfigurationProperty
set :: PropertyType "WindowsConfiguration" FileSystem
-> FileSystem -> FileSystem
set PropertyType "WindowsConfiguration" FileSystem
newValue FileSystem {Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
Maybe LustreConfigurationProperty
Maybe OntapConfigurationProperty
Maybe OpenZFSConfigurationProperty
Maybe WindowsConfigurationProperty
()
ValueList Text
Value Text
haddock_workaround_ :: FileSystem -> ()
backupId :: FileSystem -> Maybe (Value Text)
fileSystemType :: FileSystem -> Value Text
fileSystemTypeVersion :: FileSystem -> Maybe (Value Text)
kmsKeyId :: FileSystem -> Maybe (Value Text)
lustreConfiguration :: FileSystem -> Maybe LustreConfigurationProperty
networkType :: FileSystem -> Maybe (Value Text)
ontapConfiguration :: FileSystem -> Maybe OntapConfigurationProperty
openZFSConfiguration :: FileSystem -> Maybe OpenZFSConfigurationProperty
securityGroupIds :: FileSystem -> Maybe (ValueList Text)
storageCapacity :: FileSystem -> Maybe (Value Integer)
storageType :: FileSystem -> Maybe (Value Text)
subnetIds :: FileSystem -> ValueList Text
tags :: FileSystem -> Maybe [Tag]
windowsConfiguration :: FileSystem -> Maybe WindowsConfigurationProperty
haddock_workaround_ :: ()
backupId :: Maybe (Value Text)
fileSystemType :: Value Text
fileSystemTypeVersion :: Maybe (Value Text)
kmsKeyId :: Maybe (Value Text)
lustreConfiguration :: Maybe LustreConfigurationProperty
networkType :: Maybe (Value Text)
ontapConfiguration :: Maybe OntapConfigurationProperty
openZFSConfiguration :: Maybe OpenZFSConfigurationProperty
securityGroupIds :: Maybe (ValueList Text)
storageCapacity :: Maybe (Value Integer)
storageType :: Maybe (Value Text)
subnetIds :: ValueList Text
tags :: Maybe [Tag]
windowsConfiguration :: Maybe WindowsConfigurationProperty
..}
= FileSystem {windowsConfiguration :: Maybe WindowsConfigurationProperty
windowsConfiguration = WindowsConfigurationProperty -> Maybe WindowsConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "WindowsConfiguration" FileSystem
WindowsConfigurationProperty
newValue, Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Integer)
Maybe (Value Text)
Maybe LustreConfigurationProperty
Maybe OntapConfigurationProperty
Maybe OpenZFSConfigurationProperty
()
ValueList Text
Value Text
haddock_workaround_ :: ()
backupId :: Maybe (Value Text)
fileSystemType :: Value Text
fileSystemTypeVersion :: Maybe (Value Text)
kmsKeyId :: Maybe (Value Text)
lustreConfiguration :: Maybe LustreConfigurationProperty
networkType :: Maybe (Value Text)
ontapConfiguration :: Maybe OntapConfigurationProperty
openZFSConfiguration :: Maybe OpenZFSConfigurationProperty
securityGroupIds :: Maybe (ValueList Text)
storageCapacity :: Maybe (Value Integer)
storageType :: Maybe (Value Text)
subnetIds :: ValueList Text
tags :: Maybe [Tag]
haddock_workaround_ :: ()
backupId :: Maybe (Value Text)
fileSystemType :: Value Text
fileSystemTypeVersion :: Maybe (Value Text)
kmsKeyId :: Maybe (Value Text)
lustreConfiguration :: Maybe LustreConfigurationProperty
networkType :: Maybe (Value Text)
ontapConfiguration :: Maybe OntapConfigurationProperty
openZFSConfiguration :: Maybe OpenZFSConfigurationProperty
securityGroupIds :: Maybe (ValueList Text)
storageCapacity :: Maybe (Value Integer)
storageType :: Maybe (Value Text)
subnetIds :: ValueList Text
tags :: Maybe [Tag]
..}