public static interface CfnComponentVersion.LambdaVolumeMountProperty
When you define a volume, the software mounts the source files to the destination inside the container.
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.*; LambdaVolumeMountProperty lambdaVolumeMountProperty = LambdaVolumeMountProperty.builder() .addGroupOwner(false) .destinationPath("destinationPath") .permission("permission") .sourcePath("sourcePath") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnComponentVersion.LambdaVolumeMountProperty.Builder
A builder for
CfnComponentVersion.LambdaVolumeMountProperty |
static class |
CfnComponentVersion.LambdaVolumeMountProperty.Jsii$Proxy
An implementation for
CfnComponentVersion.LambdaVolumeMountProperty |
Modifier and Type | Method and Description |
---|---|
static CfnComponentVersion.LambdaVolumeMountProperty.Builder |
builder() |
default java.lang.Object |
getAddGroupOwner()
Whether or not to add the AWS IoT Greengrass user group as an owner of the volume.
|
default java.lang.String |
getDestinationPath()
The path to the logical volume in the file system.
|
default java.lang.String |
getPermission()
The permission to access the volume: read/only ( `ro` ) or read/write ( `rw` ).
|
default java.lang.String |
getSourcePath()
The path to the physical volume in the file system.
|
default java.lang.Object getAddGroupOwner()
Default: false
default java.lang.String getDestinationPath()
default java.lang.String getPermission()
Default: ro
default java.lang.String getSourcePath()
static CfnComponentVersion.LambdaVolumeMountProperty.Builder builder()