public static interface LambdaContainerParams.Builder extends SdkPojo, CopyableBuilder<LambdaContainerParams.Builder,LambdaContainerParams>
| Modifier and Type | Method and Description |
|---|---|
LambdaContainerParams.Builder |
devices(Collection<LambdaDeviceMount> devices)
The list of system devices that the container can access.
|
LambdaContainerParams.Builder |
devices(Consumer<LambdaDeviceMount.Builder>... devices)
The list of system devices that the container can access.
|
LambdaContainerParams.Builder |
devices(LambdaDeviceMount... devices)
The list of system devices that the container can access.
|
LambdaContainerParams.Builder |
memorySizeInKB(Integer memorySizeInKB)
The memory size of the container, expressed in kilobytes.
|
LambdaContainerParams.Builder |
mountROSysfs(Boolean mountROSysfs)
Whether or not the container can read information from the device's
/sys folder. |
LambdaContainerParams.Builder |
volumes(Collection<LambdaVolumeMount> volumes)
The list of volumes that the container can access.
|
LambdaContainerParams.Builder |
volumes(Consumer<LambdaVolumeMount.Builder>... volumes)
The list of volumes that the container can access.
|
LambdaContainerParams.Builder |
volumes(LambdaVolumeMount... volumes)
The list of volumes that the container can access.
|
equalsBySdkFields, sdkFieldscopyapplyMutation, buildLambdaContainerParams.Builder memorySizeInKB(Integer memorySizeInKB)
The memory size of the container, expressed in kilobytes.
Default: 16384 (16 MB)
memorySizeInKB - The memory size of the container, expressed in kilobytes.
Default: 16384 (16 MB)
LambdaContainerParams.Builder mountROSysfs(Boolean mountROSysfs)
Whether or not the container can read information from the device's /sys folder.
Default: false
mountROSysfs - Whether or not the container can read information from the device's /sys folder.
Default: false
LambdaContainerParams.Builder volumes(Collection<LambdaVolumeMount> volumes)
The list of volumes that the container can access.
volumes - The list of volumes that the container can access.LambdaContainerParams.Builder volumes(LambdaVolumeMount... volumes)
The list of volumes that the container can access.
volumes - The list of volumes that the container can access.LambdaContainerParams.Builder volumes(Consumer<LambdaVolumeMount.Builder>... volumes)
The list of volumes that the container can access.
This is a convenience method that creates an instance of theLambdaVolumeMount.Builder avoiding the need to
create one manually via
LambdaVolumeMount.builder().
When the Consumer completes,
SdkBuilder.build() is called
immediately and its result is passed to #volumes(List.
volumes - a consumer that will call methods on
LambdaVolumeMount.Builder#volumes(java.util.Collection) LambdaContainerParams.Builder devices(Collection<LambdaDeviceMount> devices)
The list of system devices that the container can access.
devices - The list of system devices that the container can access.LambdaContainerParams.Builder devices(LambdaDeviceMount... devices)
The list of system devices that the container can access.
devices - The list of system devices that the container can access.LambdaContainerParams.Builder devices(Consumer<LambdaDeviceMount.Builder>... devices)
The list of system devices that the container can access.
This is a convenience method that creates an instance of theLambdaDeviceMount.Builder avoiding the need to
create one manually via
LambdaDeviceMount.builder().
When the Consumer completes,
SdkBuilder.build() is called
immediately and its result is passed to #devices(List.
devices - a consumer that will call methods on
LambdaDeviceMount.Builder#devices(java.util.Collection) Copyright © 2023. All rights reserved.