Interface CfnComponentVersion.LambdaDeviceMountProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnComponentVersion.LambdaDeviceMountProperty.Jsii$Proxy
- Enclosing class:
- CfnComponentVersion
@Stability(Stable)
public static interface CfnComponentVersion.LambdaDeviceMountProperty
extends software.amazon.jsii.JsiiSerializable
Contains information about a device that Linux processes in a container can access.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.greengrassv2.*;
LambdaDeviceMountProperty lambdaDeviceMountProperty = LambdaDeviceMountProperty.builder()
.addGroupOwner(false)
.path("path")
.permission("permission")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnComponentVersion.LambdaDeviceMountPropertystatic final classAn implementation forCfnComponentVersion.LambdaDeviceMountProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectWhether or not to add the component's system user as an owner of the device.default StringgetPath()The mount path for the device in the file system.default StringThe permission to access the device: read/only (ro) or read/write (rw).Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAddGroupOwner
Whether or not to add the component's system user as an owner of the device.Default:
false -
getPath
The mount path for the device in the file system. -
getPermission
The permission to access the device: read/only (ro) or read/write (rw).Default:
ro -
builder
-