module Stratosphere.ECS.Service.ServiceManagedEBSVolumeConfigurationProperty (
        module Exports, ServiceManagedEBSVolumeConfigurationProperty(..),
        mkServiceManagedEBSVolumeConfigurationProperty
    ) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.ECS.Service.EBSTagSpecificationProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Value
data ServiceManagedEBSVolumeConfigurationProperty
  = -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-servicemanagedebsvolumeconfiguration.html>
    ServiceManagedEBSVolumeConfigurationProperty {ServiceManagedEBSVolumeConfigurationProperty -> ()
haddock_workaround_ :: (),
                                                  -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-servicemanagedebsvolumeconfiguration.html#cfn-ecs-service-servicemanagedebsvolumeconfiguration-encrypted>
                                                  ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Bool)
encrypted :: (Prelude.Maybe (Value Prelude.Bool)),
                                                  -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-servicemanagedebsvolumeconfiguration.html#cfn-ecs-service-servicemanagedebsvolumeconfiguration-filesystemtype>
                                                  ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
filesystemType :: (Prelude.Maybe (Value Prelude.Text)),
                                                  -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-servicemanagedebsvolumeconfiguration.html#cfn-ecs-service-servicemanagedebsvolumeconfiguration-iops>
                                                  ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
iops :: (Prelude.Maybe (Value Prelude.Integer)),
                                                  -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-servicemanagedebsvolumeconfiguration.html#cfn-ecs-service-servicemanagedebsvolumeconfiguration-kmskeyid>
                                                  ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
kmsKeyId :: (Prelude.Maybe (Value Prelude.Text)),
                                                  -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-servicemanagedebsvolumeconfiguration.html#cfn-ecs-service-servicemanagedebsvolumeconfiguration-rolearn>
                                                  ServiceManagedEBSVolumeConfigurationProperty -> Value Text
roleArn :: (Value Prelude.Text),
                                                  -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-servicemanagedebsvolumeconfiguration.html#cfn-ecs-service-servicemanagedebsvolumeconfiguration-sizeingib>
                                                  ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
sizeInGiB :: (Prelude.Maybe (Value Prelude.Integer)),
                                                  -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-servicemanagedebsvolumeconfiguration.html#cfn-ecs-service-servicemanagedebsvolumeconfiguration-snapshotid>
                                                  ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
snapshotId :: (Prelude.Maybe (Value Prelude.Text)),
                                                  -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-servicemanagedebsvolumeconfiguration.html#cfn-ecs-service-servicemanagedebsvolumeconfiguration-tagspecifications>
                                                  ServiceManagedEBSVolumeConfigurationProperty
-> Maybe [EBSTagSpecificationProperty]
tagSpecifications :: (Prelude.Maybe [EBSTagSpecificationProperty]),
                                                  -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-servicemanagedebsvolumeconfiguration.html#cfn-ecs-service-servicemanagedebsvolumeconfiguration-throughput>
                                                  ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
throughput :: (Prelude.Maybe (Value Prelude.Integer)),
                                                  -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-servicemanagedebsvolumeconfiguration.html#cfn-ecs-service-servicemanagedebsvolumeconfiguration-volumeinitializationrate>
                                                  ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
volumeInitializationRate :: (Prelude.Maybe (Value Prelude.Integer)),
                                                  -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-servicemanagedebsvolumeconfiguration.html#cfn-ecs-service-servicemanagedebsvolumeconfiguration-volumetype>
                                                  ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
volumeType :: (Prelude.Maybe (Value Prelude.Text))}
  deriving stock (ServiceManagedEBSVolumeConfigurationProperty
-> ServiceManagedEBSVolumeConfigurationProperty -> Bool
(ServiceManagedEBSVolumeConfigurationProperty
 -> ServiceManagedEBSVolumeConfigurationProperty -> Bool)
-> (ServiceManagedEBSVolumeConfigurationProperty
    -> ServiceManagedEBSVolumeConfigurationProperty -> Bool)
-> Eq ServiceManagedEBSVolumeConfigurationProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: ServiceManagedEBSVolumeConfigurationProperty
-> ServiceManagedEBSVolumeConfigurationProperty -> Bool
== :: ServiceManagedEBSVolumeConfigurationProperty
-> ServiceManagedEBSVolumeConfigurationProperty -> Bool
$c/= :: ServiceManagedEBSVolumeConfigurationProperty
-> ServiceManagedEBSVolumeConfigurationProperty -> Bool
/= :: ServiceManagedEBSVolumeConfigurationProperty
-> ServiceManagedEBSVolumeConfigurationProperty -> Bool
Prelude.Eq, Int -> ServiceManagedEBSVolumeConfigurationProperty -> ShowS
[ServiceManagedEBSVolumeConfigurationProperty] -> ShowS
ServiceManagedEBSVolumeConfigurationProperty -> String
(Int -> ServiceManagedEBSVolumeConfigurationProperty -> ShowS)
-> (ServiceManagedEBSVolumeConfigurationProperty -> String)
-> ([ServiceManagedEBSVolumeConfigurationProperty] -> ShowS)
-> Show ServiceManagedEBSVolumeConfigurationProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> ServiceManagedEBSVolumeConfigurationProperty -> ShowS
showsPrec :: Int -> ServiceManagedEBSVolumeConfigurationProperty -> ShowS
$cshow :: ServiceManagedEBSVolumeConfigurationProperty -> String
show :: ServiceManagedEBSVolumeConfigurationProperty -> String
$cshowList :: [ServiceManagedEBSVolumeConfigurationProperty] -> ShowS
showList :: [ServiceManagedEBSVolumeConfigurationProperty] -> ShowS
Prelude.Show)
mkServiceManagedEBSVolumeConfigurationProperty ::
  Value Prelude.Text -> ServiceManagedEBSVolumeConfigurationProperty
mkServiceManagedEBSVolumeConfigurationProperty :: Value Text -> ServiceManagedEBSVolumeConfigurationProperty
mkServiceManagedEBSVolumeConfigurationProperty Value Text
roleArn
  = ServiceManagedEBSVolumeConfigurationProperty
      {haddock_workaround_ :: ()
haddock_workaround_ = (), roleArn :: Value Text
roleArn = Value Text
roleArn,
       encrypted :: Maybe (Value Bool)
encrypted = Maybe (Value Bool)
forall a. Maybe a
Prelude.Nothing, filesystemType :: Maybe (Value Text)
filesystemType = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       iops :: Maybe (Value Integer)
iops = Maybe (Value Integer)
forall a. Maybe a
Prelude.Nothing, kmsKeyId :: Maybe (Value Text)
kmsKeyId = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       sizeInGiB :: Maybe (Value Integer)
sizeInGiB = Maybe (Value Integer)
forall a. Maybe a
Prelude.Nothing, snapshotId :: Maybe (Value Text)
snapshotId = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       tagSpecifications :: Maybe [EBSTagSpecificationProperty]
tagSpecifications = Maybe [EBSTagSpecificationProperty]
forall a. Maybe a
Prelude.Nothing, throughput :: Maybe (Value Integer)
throughput = Maybe (Value Integer)
forall a. Maybe a
Prelude.Nothing,
       volumeInitializationRate :: Maybe (Value Integer)
volumeInitializationRate = Maybe (Value Integer)
forall a. Maybe a
Prelude.Nothing,
       volumeType :: Maybe (Value Text)
volumeType = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties ServiceManagedEBSVolumeConfigurationProperty where
  toResourceProperties :: ServiceManagedEBSVolumeConfigurationProperty -> ResourceProperties
toResourceProperties
    ServiceManagedEBSVolumeConfigurationProperty {Maybe [EBSTagSpecificationProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ServiceManagedEBSVolumeConfigurationProperty -> ()
encrypted :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Bool)
filesystemType :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
iops :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
kmsKeyId :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
roleArn :: ServiceManagedEBSVolumeConfigurationProperty -> Value Text
sizeInGiB :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
snapshotId :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
tagSpecifications :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe [EBSTagSpecificationProperty]
throughput :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
volumeInitializationRate :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
volumeType :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
encrypted :: Maybe (Value Bool)
filesystemType :: Maybe (Value Text)
iops :: Maybe (Value Integer)
kmsKeyId :: Maybe (Value Text)
roleArn :: Value Text
sizeInGiB :: Maybe (Value Integer)
snapshotId :: Maybe (Value Text)
tagSpecifications :: Maybe [EBSTagSpecificationProperty]
throughput :: Maybe (Value Integer)
volumeInitializationRate :: Maybe (Value Integer)
volumeType :: Maybe (Value Text)
..}
    = ResourceProperties
        {awsType :: Text
awsType = Text
"AWS::ECS::Service.ServiceManagedEBSVolumeConfiguration",
         supportsTags :: Bool
supportsTags = Bool
Prelude.False,
         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
"RoleArn" 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
roleArn]
                           ([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
"Encrypted" (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)
encrypted,
                               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
"FilesystemType" (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)
filesystemType,
                               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
"Iops" (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)
iops,
                               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 -> 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
"SizeInGiB" (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)
sizeInGiB,
                               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
"SnapshotId" (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)
snapshotId,
                               Key -> [EBSTagSpecificationProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"TagSpecifications" ([EBSTagSpecificationProperty] -> (Key, Value))
-> Maybe [EBSTagSpecificationProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [EBSTagSpecificationProperty]
tagSpecifications,
                               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
"Throughput" (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)
throughput,
                               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
"VolumeInitializationRate"
                                 (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)
volumeInitializationRate,
                               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
"VolumeType" (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)
volumeType]))}
instance JSON.ToJSON ServiceManagedEBSVolumeConfigurationProperty where
  toJSON :: ServiceManagedEBSVolumeConfigurationProperty -> Value
toJSON ServiceManagedEBSVolumeConfigurationProperty {Maybe [EBSTagSpecificationProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ServiceManagedEBSVolumeConfigurationProperty -> ()
encrypted :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Bool)
filesystemType :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
iops :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
kmsKeyId :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
roleArn :: ServiceManagedEBSVolumeConfigurationProperty -> Value Text
sizeInGiB :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
snapshotId :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
tagSpecifications :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe [EBSTagSpecificationProperty]
throughput :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
volumeInitializationRate :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
volumeType :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
encrypted :: Maybe (Value Bool)
filesystemType :: Maybe (Value Text)
iops :: Maybe (Value Integer)
kmsKeyId :: Maybe (Value Text)
roleArn :: Value Text
sizeInGiB :: Maybe (Value Integer)
snapshotId :: Maybe (Value Text)
tagSpecifications :: Maybe [EBSTagSpecificationProperty]
throughput :: Maybe (Value Integer)
volumeInitializationRate :: Maybe (Value Integer)
volumeType :: Maybe (Value Text)
..}
    = [(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
"RoleArn" 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
roleArn]
              ([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
"Encrypted" (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)
encrypted,
                  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
"FilesystemType" (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)
filesystemType,
                  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
"Iops" (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)
iops,
                  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 -> 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
"SizeInGiB" (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)
sizeInGiB,
                  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
"SnapshotId" (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)
snapshotId,
                  Key -> [EBSTagSpecificationProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"TagSpecifications" ([EBSTagSpecificationProperty] -> (Key, Value))
-> Maybe [EBSTagSpecificationProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [EBSTagSpecificationProperty]
tagSpecifications,
                  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
"Throughput" (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)
throughput,
                  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
"VolumeInitializationRate"
                    (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)
volumeInitializationRate,
                  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
"VolumeType" (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)
volumeType])))
instance Property "Encrypted" ServiceManagedEBSVolumeConfigurationProperty where
  type PropertyType "Encrypted" ServiceManagedEBSVolumeConfigurationProperty = Value Prelude.Bool
  set :: PropertyType
  "Encrypted" ServiceManagedEBSVolumeConfigurationProperty
-> ServiceManagedEBSVolumeConfigurationProperty
-> ServiceManagedEBSVolumeConfigurationProperty
set PropertyType
  "Encrypted" ServiceManagedEBSVolumeConfigurationProperty
newValue ServiceManagedEBSVolumeConfigurationProperty {Maybe [EBSTagSpecificationProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ServiceManagedEBSVolumeConfigurationProperty -> ()
encrypted :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Bool)
filesystemType :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
iops :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
kmsKeyId :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
roleArn :: ServiceManagedEBSVolumeConfigurationProperty -> Value Text
sizeInGiB :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
snapshotId :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
tagSpecifications :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe [EBSTagSpecificationProperty]
throughput :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
volumeInitializationRate :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
volumeType :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
encrypted :: Maybe (Value Bool)
filesystemType :: Maybe (Value Text)
iops :: Maybe (Value Integer)
kmsKeyId :: Maybe (Value Text)
roleArn :: Value Text
sizeInGiB :: Maybe (Value Integer)
snapshotId :: Maybe (Value Text)
tagSpecifications :: Maybe [EBSTagSpecificationProperty]
throughput :: Maybe (Value Integer)
volumeInitializationRate :: Maybe (Value Integer)
volumeType :: Maybe (Value Text)
..}
    = ServiceManagedEBSVolumeConfigurationProperty
        {encrypted :: Maybe (Value Bool)
encrypted = Value Bool -> Maybe (Value Bool)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
  "Encrypted" ServiceManagedEBSVolumeConfigurationProperty
Value Bool
newValue, Maybe [EBSTagSpecificationProperty]
Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
filesystemType :: Maybe (Value Text)
iops :: Maybe (Value Integer)
kmsKeyId :: Maybe (Value Text)
roleArn :: Value Text
sizeInGiB :: Maybe (Value Integer)
snapshotId :: Maybe (Value Text)
tagSpecifications :: Maybe [EBSTagSpecificationProperty]
throughput :: Maybe (Value Integer)
volumeInitializationRate :: Maybe (Value Integer)
volumeType :: Maybe (Value Text)
haddock_workaround_ :: ()
filesystemType :: Maybe (Value Text)
iops :: Maybe (Value Integer)
kmsKeyId :: Maybe (Value Text)
roleArn :: Value Text
sizeInGiB :: Maybe (Value Integer)
snapshotId :: Maybe (Value Text)
tagSpecifications :: Maybe [EBSTagSpecificationProperty]
throughput :: Maybe (Value Integer)
volumeInitializationRate :: Maybe (Value Integer)
volumeType :: Maybe (Value Text)
..}
instance Property "FilesystemType" ServiceManagedEBSVolumeConfigurationProperty where
  type PropertyType "FilesystemType" ServiceManagedEBSVolumeConfigurationProperty = Value Prelude.Text
  set :: PropertyType
  "FilesystemType" ServiceManagedEBSVolumeConfigurationProperty
-> ServiceManagedEBSVolumeConfigurationProperty
-> ServiceManagedEBSVolumeConfigurationProperty
set PropertyType
  "FilesystemType" ServiceManagedEBSVolumeConfigurationProperty
newValue ServiceManagedEBSVolumeConfigurationProperty {Maybe [EBSTagSpecificationProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ServiceManagedEBSVolumeConfigurationProperty -> ()
encrypted :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Bool)
filesystemType :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
iops :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
kmsKeyId :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
roleArn :: ServiceManagedEBSVolumeConfigurationProperty -> Value Text
sizeInGiB :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
snapshotId :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
tagSpecifications :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe [EBSTagSpecificationProperty]
throughput :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
volumeInitializationRate :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
volumeType :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
encrypted :: Maybe (Value Bool)
filesystemType :: Maybe (Value Text)
iops :: Maybe (Value Integer)
kmsKeyId :: Maybe (Value Text)
roleArn :: Value Text
sizeInGiB :: Maybe (Value Integer)
snapshotId :: Maybe (Value Text)
tagSpecifications :: Maybe [EBSTagSpecificationProperty]
throughput :: Maybe (Value Integer)
volumeInitializationRate :: Maybe (Value Integer)
volumeType :: Maybe (Value Text)
..}
    = ServiceManagedEBSVolumeConfigurationProperty
        {filesystemType :: Maybe (Value Text)
filesystemType = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
  "FilesystemType" ServiceManagedEBSVolumeConfigurationProperty
Value Text
newValue, Maybe [EBSTagSpecificationProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
encrypted :: Maybe (Value Bool)
iops :: Maybe (Value Integer)
kmsKeyId :: Maybe (Value Text)
roleArn :: Value Text
sizeInGiB :: Maybe (Value Integer)
snapshotId :: Maybe (Value Text)
tagSpecifications :: Maybe [EBSTagSpecificationProperty]
throughput :: Maybe (Value Integer)
volumeInitializationRate :: Maybe (Value Integer)
volumeType :: Maybe (Value Text)
haddock_workaround_ :: ()
encrypted :: Maybe (Value Bool)
iops :: Maybe (Value Integer)
kmsKeyId :: Maybe (Value Text)
roleArn :: Value Text
sizeInGiB :: Maybe (Value Integer)
snapshotId :: Maybe (Value Text)
tagSpecifications :: Maybe [EBSTagSpecificationProperty]
throughput :: Maybe (Value Integer)
volumeInitializationRate :: Maybe (Value Integer)
volumeType :: Maybe (Value Text)
..}
instance Property "Iops" ServiceManagedEBSVolumeConfigurationProperty where
  type PropertyType "Iops" ServiceManagedEBSVolumeConfigurationProperty = Value Prelude.Integer
  set :: PropertyType "Iops" ServiceManagedEBSVolumeConfigurationProperty
-> ServiceManagedEBSVolumeConfigurationProperty
-> ServiceManagedEBSVolumeConfigurationProperty
set PropertyType "Iops" ServiceManagedEBSVolumeConfigurationProperty
newValue ServiceManagedEBSVolumeConfigurationProperty {Maybe [EBSTagSpecificationProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ServiceManagedEBSVolumeConfigurationProperty -> ()
encrypted :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Bool)
filesystemType :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
iops :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
kmsKeyId :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
roleArn :: ServiceManagedEBSVolumeConfigurationProperty -> Value Text
sizeInGiB :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
snapshotId :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
tagSpecifications :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe [EBSTagSpecificationProperty]
throughput :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
volumeInitializationRate :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
volumeType :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
encrypted :: Maybe (Value Bool)
filesystemType :: Maybe (Value Text)
iops :: Maybe (Value Integer)
kmsKeyId :: Maybe (Value Text)
roleArn :: Value Text
sizeInGiB :: Maybe (Value Integer)
snapshotId :: Maybe (Value Text)
tagSpecifications :: Maybe [EBSTagSpecificationProperty]
throughput :: Maybe (Value Integer)
volumeInitializationRate :: Maybe (Value Integer)
volumeType :: Maybe (Value Text)
..}
    = ServiceManagedEBSVolumeConfigurationProperty
        {iops :: Maybe (Value Integer)
iops = Value Integer -> Maybe (Value Integer)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Iops" ServiceManagedEBSVolumeConfigurationProperty
Value Integer
newValue, Maybe [EBSTagSpecificationProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
encrypted :: Maybe (Value Bool)
filesystemType :: Maybe (Value Text)
kmsKeyId :: Maybe (Value Text)
roleArn :: Value Text
sizeInGiB :: Maybe (Value Integer)
snapshotId :: Maybe (Value Text)
tagSpecifications :: Maybe [EBSTagSpecificationProperty]
throughput :: Maybe (Value Integer)
volumeInitializationRate :: Maybe (Value Integer)
volumeType :: Maybe (Value Text)
haddock_workaround_ :: ()
encrypted :: Maybe (Value Bool)
filesystemType :: Maybe (Value Text)
kmsKeyId :: Maybe (Value Text)
roleArn :: Value Text
sizeInGiB :: Maybe (Value Integer)
snapshotId :: Maybe (Value Text)
tagSpecifications :: Maybe [EBSTagSpecificationProperty]
throughput :: Maybe (Value Integer)
volumeInitializationRate :: Maybe (Value Integer)
volumeType :: Maybe (Value Text)
..}
instance Property "KmsKeyId" ServiceManagedEBSVolumeConfigurationProperty where
  type PropertyType "KmsKeyId" ServiceManagedEBSVolumeConfigurationProperty = Value Prelude.Text
  set :: PropertyType
  "KmsKeyId" ServiceManagedEBSVolumeConfigurationProperty
-> ServiceManagedEBSVolumeConfigurationProperty
-> ServiceManagedEBSVolumeConfigurationProperty
set PropertyType
  "KmsKeyId" ServiceManagedEBSVolumeConfigurationProperty
newValue ServiceManagedEBSVolumeConfigurationProperty {Maybe [EBSTagSpecificationProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ServiceManagedEBSVolumeConfigurationProperty -> ()
encrypted :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Bool)
filesystemType :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
iops :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
kmsKeyId :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
roleArn :: ServiceManagedEBSVolumeConfigurationProperty -> Value Text
sizeInGiB :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
snapshotId :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
tagSpecifications :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe [EBSTagSpecificationProperty]
throughput :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
volumeInitializationRate :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
volumeType :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
encrypted :: Maybe (Value Bool)
filesystemType :: Maybe (Value Text)
iops :: Maybe (Value Integer)
kmsKeyId :: Maybe (Value Text)
roleArn :: Value Text
sizeInGiB :: Maybe (Value Integer)
snapshotId :: Maybe (Value Text)
tagSpecifications :: Maybe [EBSTagSpecificationProperty]
throughput :: Maybe (Value Integer)
volumeInitializationRate :: Maybe (Value Integer)
volumeType :: Maybe (Value Text)
..}
    = ServiceManagedEBSVolumeConfigurationProperty
        {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" ServiceManagedEBSVolumeConfigurationProperty
Value Text
newValue, Maybe [EBSTagSpecificationProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
encrypted :: Maybe (Value Bool)
filesystemType :: Maybe (Value Text)
iops :: Maybe (Value Integer)
roleArn :: Value Text
sizeInGiB :: Maybe (Value Integer)
snapshotId :: Maybe (Value Text)
tagSpecifications :: Maybe [EBSTagSpecificationProperty]
throughput :: Maybe (Value Integer)
volumeInitializationRate :: Maybe (Value Integer)
volumeType :: Maybe (Value Text)
haddock_workaround_ :: ()
encrypted :: Maybe (Value Bool)
filesystemType :: Maybe (Value Text)
iops :: Maybe (Value Integer)
roleArn :: Value Text
sizeInGiB :: Maybe (Value Integer)
snapshotId :: Maybe (Value Text)
tagSpecifications :: Maybe [EBSTagSpecificationProperty]
throughput :: Maybe (Value Integer)
volumeInitializationRate :: Maybe (Value Integer)
volumeType :: Maybe (Value Text)
..}
instance Property "RoleArn" ServiceManagedEBSVolumeConfigurationProperty where
  type PropertyType "RoleArn" ServiceManagedEBSVolumeConfigurationProperty = Value Prelude.Text
  set :: PropertyType "RoleArn" ServiceManagedEBSVolumeConfigurationProperty
-> ServiceManagedEBSVolumeConfigurationProperty
-> ServiceManagedEBSVolumeConfigurationProperty
set PropertyType "RoleArn" ServiceManagedEBSVolumeConfigurationProperty
newValue ServiceManagedEBSVolumeConfigurationProperty {Maybe [EBSTagSpecificationProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ServiceManagedEBSVolumeConfigurationProperty -> ()
encrypted :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Bool)
filesystemType :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
iops :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
kmsKeyId :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
roleArn :: ServiceManagedEBSVolumeConfigurationProperty -> Value Text
sizeInGiB :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
snapshotId :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
tagSpecifications :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe [EBSTagSpecificationProperty]
throughput :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
volumeInitializationRate :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
volumeType :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
encrypted :: Maybe (Value Bool)
filesystemType :: Maybe (Value Text)
iops :: Maybe (Value Integer)
kmsKeyId :: Maybe (Value Text)
roleArn :: Value Text
sizeInGiB :: Maybe (Value Integer)
snapshotId :: Maybe (Value Text)
tagSpecifications :: Maybe [EBSTagSpecificationProperty]
throughput :: Maybe (Value Integer)
volumeInitializationRate :: Maybe (Value Integer)
volumeType :: Maybe (Value Text)
..}
    = ServiceManagedEBSVolumeConfigurationProperty
        {roleArn :: Value Text
roleArn = PropertyType "RoleArn" ServiceManagedEBSVolumeConfigurationProperty
Value Text
newValue, Maybe [EBSTagSpecificationProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ()
encrypted :: Maybe (Value Bool)
filesystemType :: Maybe (Value Text)
iops :: Maybe (Value Integer)
kmsKeyId :: Maybe (Value Text)
sizeInGiB :: Maybe (Value Integer)
snapshotId :: Maybe (Value Text)
tagSpecifications :: Maybe [EBSTagSpecificationProperty]
throughput :: Maybe (Value Integer)
volumeInitializationRate :: Maybe (Value Integer)
volumeType :: Maybe (Value Text)
haddock_workaround_ :: ()
encrypted :: Maybe (Value Bool)
filesystemType :: Maybe (Value Text)
iops :: Maybe (Value Integer)
kmsKeyId :: Maybe (Value Text)
sizeInGiB :: Maybe (Value Integer)
snapshotId :: Maybe (Value Text)
tagSpecifications :: Maybe [EBSTagSpecificationProperty]
throughput :: Maybe (Value Integer)
volumeInitializationRate :: Maybe (Value Integer)
volumeType :: Maybe (Value Text)
..}
instance Property "SizeInGiB" ServiceManagedEBSVolumeConfigurationProperty where
  type PropertyType "SizeInGiB" ServiceManagedEBSVolumeConfigurationProperty = Value Prelude.Integer
  set :: PropertyType
  "SizeInGiB" ServiceManagedEBSVolumeConfigurationProperty
-> ServiceManagedEBSVolumeConfigurationProperty
-> ServiceManagedEBSVolumeConfigurationProperty
set PropertyType
  "SizeInGiB" ServiceManagedEBSVolumeConfigurationProperty
newValue ServiceManagedEBSVolumeConfigurationProperty {Maybe [EBSTagSpecificationProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ServiceManagedEBSVolumeConfigurationProperty -> ()
encrypted :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Bool)
filesystemType :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
iops :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
kmsKeyId :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
roleArn :: ServiceManagedEBSVolumeConfigurationProperty -> Value Text
sizeInGiB :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
snapshotId :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
tagSpecifications :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe [EBSTagSpecificationProperty]
throughput :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
volumeInitializationRate :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
volumeType :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
encrypted :: Maybe (Value Bool)
filesystemType :: Maybe (Value Text)
iops :: Maybe (Value Integer)
kmsKeyId :: Maybe (Value Text)
roleArn :: Value Text
sizeInGiB :: Maybe (Value Integer)
snapshotId :: Maybe (Value Text)
tagSpecifications :: Maybe [EBSTagSpecificationProperty]
throughput :: Maybe (Value Integer)
volumeInitializationRate :: Maybe (Value Integer)
volumeType :: Maybe (Value Text)
..}
    = ServiceManagedEBSVolumeConfigurationProperty
        {sizeInGiB :: Maybe (Value Integer)
sizeInGiB = Value Integer -> Maybe (Value Integer)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
  "SizeInGiB" ServiceManagedEBSVolumeConfigurationProperty
Value Integer
newValue, Maybe [EBSTagSpecificationProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
encrypted :: Maybe (Value Bool)
filesystemType :: Maybe (Value Text)
iops :: Maybe (Value Integer)
kmsKeyId :: Maybe (Value Text)
roleArn :: Value Text
snapshotId :: Maybe (Value Text)
tagSpecifications :: Maybe [EBSTagSpecificationProperty]
throughput :: Maybe (Value Integer)
volumeInitializationRate :: Maybe (Value Integer)
volumeType :: Maybe (Value Text)
haddock_workaround_ :: ()
encrypted :: Maybe (Value Bool)
filesystemType :: Maybe (Value Text)
iops :: Maybe (Value Integer)
kmsKeyId :: Maybe (Value Text)
roleArn :: Value Text
snapshotId :: Maybe (Value Text)
tagSpecifications :: Maybe [EBSTagSpecificationProperty]
throughput :: Maybe (Value Integer)
volumeInitializationRate :: Maybe (Value Integer)
volumeType :: Maybe (Value Text)
..}
instance Property "SnapshotId" ServiceManagedEBSVolumeConfigurationProperty where
  type PropertyType "SnapshotId" ServiceManagedEBSVolumeConfigurationProperty = Value Prelude.Text
  set :: PropertyType
  "SnapshotId" ServiceManagedEBSVolumeConfigurationProperty
-> ServiceManagedEBSVolumeConfigurationProperty
-> ServiceManagedEBSVolumeConfigurationProperty
set PropertyType
  "SnapshotId" ServiceManagedEBSVolumeConfigurationProperty
newValue ServiceManagedEBSVolumeConfigurationProperty {Maybe [EBSTagSpecificationProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ServiceManagedEBSVolumeConfigurationProperty -> ()
encrypted :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Bool)
filesystemType :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
iops :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
kmsKeyId :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
roleArn :: ServiceManagedEBSVolumeConfigurationProperty -> Value Text
sizeInGiB :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
snapshotId :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
tagSpecifications :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe [EBSTagSpecificationProperty]
throughput :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
volumeInitializationRate :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
volumeType :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
encrypted :: Maybe (Value Bool)
filesystemType :: Maybe (Value Text)
iops :: Maybe (Value Integer)
kmsKeyId :: Maybe (Value Text)
roleArn :: Value Text
sizeInGiB :: Maybe (Value Integer)
snapshotId :: Maybe (Value Text)
tagSpecifications :: Maybe [EBSTagSpecificationProperty]
throughput :: Maybe (Value Integer)
volumeInitializationRate :: Maybe (Value Integer)
volumeType :: Maybe (Value Text)
..}
    = ServiceManagedEBSVolumeConfigurationProperty
        {snapshotId :: Maybe (Value Text)
snapshotId = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
  "SnapshotId" ServiceManagedEBSVolumeConfigurationProperty
Value Text
newValue, Maybe [EBSTagSpecificationProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
encrypted :: Maybe (Value Bool)
filesystemType :: Maybe (Value Text)
iops :: Maybe (Value Integer)
kmsKeyId :: Maybe (Value Text)
roleArn :: Value Text
sizeInGiB :: Maybe (Value Integer)
tagSpecifications :: Maybe [EBSTagSpecificationProperty]
throughput :: Maybe (Value Integer)
volumeInitializationRate :: Maybe (Value Integer)
volumeType :: Maybe (Value Text)
haddock_workaround_ :: ()
encrypted :: Maybe (Value Bool)
filesystemType :: Maybe (Value Text)
iops :: Maybe (Value Integer)
kmsKeyId :: Maybe (Value Text)
roleArn :: Value Text
sizeInGiB :: Maybe (Value Integer)
tagSpecifications :: Maybe [EBSTagSpecificationProperty]
throughput :: Maybe (Value Integer)
volumeInitializationRate :: Maybe (Value Integer)
volumeType :: Maybe (Value Text)
..}
instance Property "TagSpecifications" ServiceManagedEBSVolumeConfigurationProperty where
  type PropertyType "TagSpecifications" ServiceManagedEBSVolumeConfigurationProperty = [EBSTagSpecificationProperty]
  set :: PropertyType
  "TagSpecifications" ServiceManagedEBSVolumeConfigurationProperty
-> ServiceManagedEBSVolumeConfigurationProperty
-> ServiceManagedEBSVolumeConfigurationProperty
set PropertyType
  "TagSpecifications" ServiceManagedEBSVolumeConfigurationProperty
newValue ServiceManagedEBSVolumeConfigurationProperty {Maybe [EBSTagSpecificationProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ServiceManagedEBSVolumeConfigurationProperty -> ()
encrypted :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Bool)
filesystemType :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
iops :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
kmsKeyId :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
roleArn :: ServiceManagedEBSVolumeConfigurationProperty -> Value Text
sizeInGiB :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
snapshotId :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
tagSpecifications :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe [EBSTagSpecificationProperty]
throughput :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
volumeInitializationRate :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
volumeType :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
encrypted :: Maybe (Value Bool)
filesystemType :: Maybe (Value Text)
iops :: Maybe (Value Integer)
kmsKeyId :: Maybe (Value Text)
roleArn :: Value Text
sizeInGiB :: Maybe (Value Integer)
snapshotId :: Maybe (Value Text)
tagSpecifications :: Maybe [EBSTagSpecificationProperty]
throughput :: Maybe (Value Integer)
volumeInitializationRate :: Maybe (Value Integer)
volumeType :: Maybe (Value Text)
..}
    = ServiceManagedEBSVolumeConfigurationProperty
        {tagSpecifications :: Maybe [EBSTagSpecificationProperty]
tagSpecifications = [EBSTagSpecificationProperty]
-> Maybe [EBSTagSpecificationProperty]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [EBSTagSpecificationProperty]
PropertyType
  "TagSpecifications" ServiceManagedEBSVolumeConfigurationProperty
newValue, Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
encrypted :: Maybe (Value Bool)
filesystemType :: Maybe (Value Text)
iops :: Maybe (Value Integer)
kmsKeyId :: Maybe (Value Text)
roleArn :: Value Text
sizeInGiB :: Maybe (Value Integer)
snapshotId :: Maybe (Value Text)
throughput :: Maybe (Value Integer)
volumeInitializationRate :: Maybe (Value Integer)
volumeType :: Maybe (Value Text)
haddock_workaround_ :: ()
encrypted :: Maybe (Value Bool)
filesystemType :: Maybe (Value Text)
iops :: Maybe (Value Integer)
kmsKeyId :: Maybe (Value Text)
roleArn :: Value Text
sizeInGiB :: Maybe (Value Integer)
snapshotId :: Maybe (Value Text)
throughput :: Maybe (Value Integer)
volumeInitializationRate :: Maybe (Value Integer)
volumeType :: Maybe (Value Text)
..}
instance Property "Throughput" ServiceManagedEBSVolumeConfigurationProperty where
  type PropertyType "Throughput" ServiceManagedEBSVolumeConfigurationProperty = Value Prelude.Integer
  set :: PropertyType
  "Throughput" ServiceManagedEBSVolumeConfigurationProperty
-> ServiceManagedEBSVolumeConfigurationProperty
-> ServiceManagedEBSVolumeConfigurationProperty
set PropertyType
  "Throughput" ServiceManagedEBSVolumeConfigurationProperty
newValue ServiceManagedEBSVolumeConfigurationProperty {Maybe [EBSTagSpecificationProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ServiceManagedEBSVolumeConfigurationProperty -> ()
encrypted :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Bool)
filesystemType :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
iops :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
kmsKeyId :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
roleArn :: ServiceManagedEBSVolumeConfigurationProperty -> Value Text
sizeInGiB :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
snapshotId :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
tagSpecifications :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe [EBSTagSpecificationProperty]
throughput :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
volumeInitializationRate :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
volumeType :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
encrypted :: Maybe (Value Bool)
filesystemType :: Maybe (Value Text)
iops :: Maybe (Value Integer)
kmsKeyId :: Maybe (Value Text)
roleArn :: Value Text
sizeInGiB :: Maybe (Value Integer)
snapshotId :: Maybe (Value Text)
tagSpecifications :: Maybe [EBSTagSpecificationProperty]
throughput :: Maybe (Value Integer)
volumeInitializationRate :: Maybe (Value Integer)
volumeType :: Maybe (Value Text)
..}
    = ServiceManagedEBSVolumeConfigurationProperty
        {throughput :: Maybe (Value Integer)
throughput = Value Integer -> Maybe (Value Integer)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
  "Throughput" ServiceManagedEBSVolumeConfigurationProperty
Value Integer
newValue, Maybe [EBSTagSpecificationProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
encrypted :: Maybe (Value Bool)
filesystemType :: Maybe (Value Text)
iops :: Maybe (Value Integer)
kmsKeyId :: Maybe (Value Text)
roleArn :: Value Text
sizeInGiB :: Maybe (Value Integer)
snapshotId :: Maybe (Value Text)
tagSpecifications :: Maybe [EBSTagSpecificationProperty]
volumeInitializationRate :: Maybe (Value Integer)
volumeType :: Maybe (Value Text)
haddock_workaround_ :: ()
encrypted :: Maybe (Value Bool)
filesystemType :: Maybe (Value Text)
iops :: Maybe (Value Integer)
kmsKeyId :: Maybe (Value Text)
roleArn :: Value Text
sizeInGiB :: Maybe (Value Integer)
snapshotId :: Maybe (Value Text)
tagSpecifications :: Maybe [EBSTagSpecificationProperty]
volumeInitializationRate :: Maybe (Value Integer)
volumeType :: Maybe (Value Text)
..}
instance Property "VolumeInitializationRate" ServiceManagedEBSVolumeConfigurationProperty where
  type PropertyType "VolumeInitializationRate" ServiceManagedEBSVolumeConfigurationProperty = Value Prelude.Integer
  set :: PropertyType
  "VolumeInitializationRate"
  ServiceManagedEBSVolumeConfigurationProperty
-> ServiceManagedEBSVolumeConfigurationProperty
-> ServiceManagedEBSVolumeConfigurationProperty
set PropertyType
  "VolumeInitializationRate"
  ServiceManagedEBSVolumeConfigurationProperty
newValue ServiceManagedEBSVolumeConfigurationProperty {Maybe [EBSTagSpecificationProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ServiceManagedEBSVolumeConfigurationProperty -> ()
encrypted :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Bool)
filesystemType :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
iops :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
kmsKeyId :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
roleArn :: ServiceManagedEBSVolumeConfigurationProperty -> Value Text
sizeInGiB :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
snapshotId :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
tagSpecifications :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe [EBSTagSpecificationProperty]
throughput :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
volumeInitializationRate :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
volumeType :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
encrypted :: Maybe (Value Bool)
filesystemType :: Maybe (Value Text)
iops :: Maybe (Value Integer)
kmsKeyId :: Maybe (Value Text)
roleArn :: Value Text
sizeInGiB :: Maybe (Value Integer)
snapshotId :: Maybe (Value Text)
tagSpecifications :: Maybe [EBSTagSpecificationProperty]
throughput :: Maybe (Value Integer)
volumeInitializationRate :: Maybe (Value Integer)
volumeType :: Maybe (Value Text)
..}
    = ServiceManagedEBSVolumeConfigurationProperty
        {volumeInitializationRate :: Maybe (Value Integer)
volumeInitializationRate = Value Integer -> Maybe (Value Integer)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
  "VolumeInitializationRate"
  ServiceManagedEBSVolumeConfigurationProperty
Value Integer
newValue, Maybe [EBSTagSpecificationProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
encrypted :: Maybe (Value Bool)
filesystemType :: Maybe (Value Text)
iops :: Maybe (Value Integer)
kmsKeyId :: Maybe (Value Text)
roleArn :: Value Text
sizeInGiB :: Maybe (Value Integer)
snapshotId :: Maybe (Value Text)
tagSpecifications :: Maybe [EBSTagSpecificationProperty]
throughput :: Maybe (Value Integer)
volumeType :: Maybe (Value Text)
haddock_workaround_ :: ()
encrypted :: Maybe (Value Bool)
filesystemType :: Maybe (Value Text)
iops :: Maybe (Value Integer)
kmsKeyId :: Maybe (Value Text)
roleArn :: Value Text
sizeInGiB :: Maybe (Value Integer)
snapshotId :: Maybe (Value Text)
tagSpecifications :: Maybe [EBSTagSpecificationProperty]
throughput :: Maybe (Value Integer)
volumeType :: Maybe (Value Text)
..}
instance Property "VolumeType" ServiceManagedEBSVolumeConfigurationProperty where
  type PropertyType "VolumeType" ServiceManagedEBSVolumeConfigurationProperty = Value Prelude.Text
  set :: PropertyType
  "VolumeType" ServiceManagedEBSVolumeConfigurationProperty
-> ServiceManagedEBSVolumeConfigurationProperty
-> ServiceManagedEBSVolumeConfigurationProperty
set PropertyType
  "VolumeType" ServiceManagedEBSVolumeConfigurationProperty
newValue ServiceManagedEBSVolumeConfigurationProperty {Maybe [EBSTagSpecificationProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ServiceManagedEBSVolumeConfigurationProperty -> ()
encrypted :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Bool)
filesystemType :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
iops :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
kmsKeyId :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
roleArn :: ServiceManagedEBSVolumeConfigurationProperty -> Value Text
sizeInGiB :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
snapshotId :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
tagSpecifications :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe [EBSTagSpecificationProperty]
throughput :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
volumeInitializationRate :: ServiceManagedEBSVolumeConfigurationProperty
-> Maybe (Value Integer)
volumeType :: ServiceManagedEBSVolumeConfigurationProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
encrypted :: Maybe (Value Bool)
filesystemType :: Maybe (Value Text)
iops :: Maybe (Value Integer)
kmsKeyId :: Maybe (Value Text)
roleArn :: Value Text
sizeInGiB :: Maybe (Value Integer)
snapshotId :: Maybe (Value Text)
tagSpecifications :: Maybe [EBSTagSpecificationProperty]
throughput :: Maybe (Value Integer)
volumeInitializationRate :: Maybe (Value Integer)
volumeType :: Maybe (Value Text)
..}
    = ServiceManagedEBSVolumeConfigurationProperty
        {volumeType :: Maybe (Value Text)
volumeType = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
  "VolumeType" ServiceManagedEBSVolumeConfigurationProperty
Value Text
newValue, Maybe [EBSTagSpecificationProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
encrypted :: Maybe (Value Bool)
filesystemType :: Maybe (Value Text)
iops :: Maybe (Value Integer)
kmsKeyId :: Maybe (Value Text)
roleArn :: Value Text
sizeInGiB :: Maybe (Value Integer)
snapshotId :: Maybe (Value Text)
tagSpecifications :: Maybe [EBSTagSpecificationProperty]
throughput :: Maybe (Value Integer)
volumeInitializationRate :: Maybe (Value Integer)
haddock_workaround_ :: ()
encrypted :: Maybe (Value Bool)
filesystemType :: Maybe (Value Text)
iops :: Maybe (Value Integer)
kmsKeyId :: Maybe (Value Text)
roleArn :: Value Text
sizeInGiB :: Maybe (Value Integer)
snapshotId :: Maybe (Value Text)
tagSpecifications :: Maybe [EBSTagSpecificationProperty]
throughput :: Maybe (Value Integer)
volumeInitializationRate :: Maybe (Value Integer)
..}