Class CfnComponentVersionPropsMixin.LambdaDeviceMountProperty
Contains information about a device that Linux processes in a container can access.
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.GreengrassV2
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnComponentVersionPropsMixin.LambdaDeviceMountProperty : CfnComponentVersionPropsMixin.ILambdaDeviceMountProperty
Syntax (vb)
Public Class CfnComponentVersionPropsMixin.LambdaDeviceMountProperty Implements CfnComponentVersionPropsMixin.ILambdaDeviceMountProperty
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.CfnPropertyMixins.AWS.GreengrassV2;
var lambdaDeviceMountProperty = new LambdaDeviceMountProperty {
AddGroupOwner = false,
Path = "path",
Permission = "permission"
};
Synopsis
Constructors
| LambdaDeviceMountProperty() | Contains information about a device that Linux processes in a container can access. |
Properties
| AddGroupOwner | Whether or not to add the component's system user as an owner of the device. |
| Path | The mount path for the device in the file system. |
| Permission | The permission to access the device: read/only ( |
Constructors
LambdaDeviceMountProperty()
Contains information about a device that Linux processes in a container can access.
public LambdaDeviceMountProperty()
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.CfnPropertyMixins.AWS.GreengrassV2;
var lambdaDeviceMountProperty = new LambdaDeviceMountProperty {
AddGroupOwner = false,
Path = "path",
Permission = "permission"
};
Properties
AddGroupOwner
Whether or not to add the component's system user as an owner of the device.
public object? AddGroupOwner { get; set; }
Property Value
Remarks
Path
The mount path for the device in the file system.
public string? Path { get; set; }
Property Value
Remarks
Permission
The permission to access the device: read/only ( ro ) or read/write ( rw ).
public string? Permission { get; set; }