Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Synopsis
- data LambdaContainerParams = LambdaContainerParams' {}
- newLambdaContainerParams :: LambdaContainerParams
- lambdaContainerParams_mountROSysfs :: Lens' LambdaContainerParams (Maybe Bool)
- lambdaContainerParams_memorySizeInKB :: Lens' LambdaContainerParams (Maybe Int)
- lambdaContainerParams_devices :: Lens' LambdaContainerParams (Maybe [LambdaDeviceMount])
- lambdaContainerParams_volumes :: Lens' LambdaContainerParams (Maybe [LambdaVolumeMount])
Documentation
data LambdaContainerParams Source #
Contains information about a container in which Lambda functions run on Greengrass core devices.
See: newLambdaContainerParams
smart constructor.
LambdaContainerParams' | |
|
Instances
newLambdaContainerParams :: LambdaContainerParams Source #
Create a value of LambdaContainerParams
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:mountROSysfs:LambdaContainerParams'
, lambdaContainerParams_mountROSysfs
- Whether or not the container can read information from the device's
/sys
folder.
Default: false
$sel:memorySizeInKB:LambdaContainerParams'
, lambdaContainerParams_memorySizeInKB
- The memory size of the container, expressed in kilobytes.
Default: 16384
(16 MB)
$sel:devices:LambdaContainerParams'
, lambdaContainerParams_devices
- The list of system devices that the container can access.
$sel:volumes:LambdaContainerParams'
, lambdaContainerParams_volumes
- The list of volumes that the container can access.
lambdaContainerParams_mountROSysfs :: Lens' LambdaContainerParams (Maybe Bool) Source #
Whether or not the container can read information from the device's
/sys
folder.
Default: false
lambdaContainerParams_memorySizeInKB :: Lens' LambdaContainerParams (Maybe Int) Source #
The memory size of the container, expressed in kilobytes.
Default: 16384
(16 MB)
lambdaContainerParams_devices :: Lens' LambdaContainerParams (Maybe [LambdaDeviceMount]) Source #
The list of system devices that the container can access.
lambdaContainerParams_volumes :: Lens' LambdaContainerParams (Maybe [LambdaVolumeMount]) Source #
The list of volumes that the container can access.