libZSservicesZSamazonka-greengrassv2ZSamazonka-greengrassv2
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.GreengrassV2.Types.LambdaContainerParams

Description

 
Synopsis

Documentation

data LambdaContainerParams Source #

Contains information about a container in which Lambda functions run on Greengrass core devices.

See: newLambdaContainerParams smart constructor.

Constructors

LambdaContainerParams' 

Fields

Instances

Instances details
Eq LambdaContainerParams Source # 
Instance details

Defined in Amazonka.GreengrassV2.Types.LambdaContainerParams

Read LambdaContainerParams Source # 
Instance details

Defined in Amazonka.GreengrassV2.Types.LambdaContainerParams

Show LambdaContainerParams Source # 
Instance details

Defined in Amazonka.GreengrassV2.Types.LambdaContainerParams

Generic LambdaContainerParams Source # 
Instance details

Defined in Amazonka.GreengrassV2.Types.LambdaContainerParams

Associated Types

type Rep LambdaContainerParams :: Type -> Type #

NFData LambdaContainerParams Source # 
Instance details

Defined in Amazonka.GreengrassV2.Types.LambdaContainerParams

Methods

rnf :: LambdaContainerParams -> () #

Hashable LambdaContainerParams Source # 
Instance details

Defined in Amazonka.GreengrassV2.Types.LambdaContainerParams

ToJSON LambdaContainerParams Source # 
Instance details

Defined in Amazonka.GreengrassV2.Types.LambdaContainerParams

type Rep LambdaContainerParams Source # 
Instance details

Defined in Amazonka.GreengrassV2.Types.LambdaContainerParams

type Rep LambdaContainerParams = D1 ('MetaData "LambdaContainerParams" "Amazonka.GreengrassV2.Types.LambdaContainerParams" "libZSservicesZSamazonka-greengrassv2ZSamazonka-greengrassv2" 'False) (C1 ('MetaCons "LambdaContainerParams'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "mountROSysfs") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "memorySizeInKB") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int))) :*: (S1 ('MetaSel ('Just "devices") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [LambdaDeviceMount])) :*: S1 ('MetaSel ('Just "volumes") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [LambdaVolumeMount])))))

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.