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();
- See Also:
-
Nested Class Summary
Modifier 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
- See Also:
-
getPath
The mount path for the device in the file system.- See Also:
-
getPermission
The permission to access the device: read/only (ro
) or read/write (rw
).Default:
ro
- See Also:
-
builder
-