Interface CfnComponentVersion.LambdaDeviceMountProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnComponentVersion.LambdaDeviceMountProperty.Jsii$Proxy
- Enclosing class:
- CfnComponentVersion
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 class
A builder forCfnComponentVersion.LambdaDeviceMountProperty
static final class
An implementation forCfnComponentVersion.LambdaDeviceMountProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
Whether or not to add the component's system user as an owner of the device.default String
getPath()
The mount path for the device in the file system.default String
The 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
-