Class CfnComponentVersion.LambdaContainerParamsProperty
Contains information about a container in which AWS Lambda functions run on AWS IoT Greengrass core devices.
Inheritance
Namespace: Amazon.CDK.AWS.GreengrassV2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class LambdaContainerParamsProperty : Object, CfnComponentVersion.ILambdaContainerParamsProperty
Syntax (vb)
Public Class LambdaContainerParamsProperty
Inherits Object
Implements CfnComponentVersion.ILambdaContainerParamsProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.GreengrassV2;
var lambdaContainerParamsProperty = new LambdaContainerParamsProperty {
Devices = new [] { new LambdaDeviceMountProperty {
AddGroupOwner = false,
Path = "path",
Permission = "permission"
} },
MemorySizeInKb = 123,
MountRoSysfs = false,
Volumes = new [] { new LambdaVolumeMountProperty {
AddGroupOwner = false,
DestinationPath = "destinationPath",
Permission = "permission",
SourcePath = "sourcePath"
} }
};
Synopsis
Constructors
Lambda |
Properties
Devices | The list of system devices that the container can access. |
Memory |
The memory size of the container, expressed in kilobytes. |
Mount |
Whether or not the container can read information from the device's |
Volumes | The list of volumes that the container can access. |
Constructors
LambdaContainerParamsProperty()
public LambdaContainerParamsProperty()
Properties
Devices
The list of system devices that the container can access.
public object Devices { get; set; }
Property Value
System.
Remarks
MemorySizeInKb
The memory size of the container, expressed in kilobytes.
public Nullable<double> MemorySizeInKb { get; set; }
Property Value
System.
Remarks
MountRoSysfs
Whether or not the container can read information from the device's /sys
folder.
public object MountRoSysfs { get; set; }
Property Value
System.
Remarks
Volumes
The list of volumes that the container can access.
public object Volumes { get; set; }
Property Value
System.