Interface LambdaDeviceMount.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<LambdaDeviceMount.Builder,LambdaDeviceMount>,SdkBuilder<LambdaDeviceMount.Builder,LambdaDeviceMount>,SdkPojo
- Enclosing class:
- LambdaDeviceMount
public static interface LambdaDeviceMount.Builder extends SdkPojo, CopyableBuilder<LambdaDeviceMount.Builder,LambdaDeviceMount>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LambdaDeviceMount.BuilderaddGroupOwner(Boolean addGroupOwner)Whether or not to add the component's system user as an owner of the device.LambdaDeviceMount.Builderpath(String path)The mount path for the device in the file system.LambdaDeviceMount.Builderpermission(String permission)The permission to access the device: read/only (ro) or read/write (rw).LambdaDeviceMount.Builderpermission(LambdaFilesystemPermission permission)The permission to access the device: read/only (ro) or read/write (rw).-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
path
LambdaDeviceMount.Builder path(String path)
The mount path for the device in the file system.
- Parameters:
path- The mount path for the device in the file system.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
permission
LambdaDeviceMount.Builder permission(String permission)
The permission to access the device: read/only (
ro) or read/write (rw).Default:
ro- Parameters:
permission- The permission to access the device: read/only (ro) or read/write (rw).Default:
ro- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
LambdaFilesystemPermission,LambdaFilesystemPermission
-
permission
LambdaDeviceMount.Builder permission(LambdaFilesystemPermission permission)
The permission to access the device: read/only (
ro) or read/write (rw).Default:
ro- Parameters:
permission- The permission to access the device: read/only (ro) or read/write (rw).Default:
ro- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
LambdaFilesystemPermission,LambdaFilesystemPermission
-
addGroupOwner
LambdaDeviceMount.Builder addGroupOwner(Boolean addGroupOwner)
Whether or not to add the component's system user as an owner of the device.
Default:
false- Parameters:
addGroupOwner- Whether or not to add the component's system user as an owner of the device.Default:
false- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-