Interface EksEmptyDir.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<EksEmptyDir.Builder,EksEmptyDir>,SdkBuilder<EksEmptyDir.Builder,EksEmptyDir>,SdkPojo
- Enclosing class:
- EksEmptyDir
public static interface EksEmptyDir.Builder extends SdkPojo, CopyableBuilder<EksEmptyDir.Builder,EksEmptyDir>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EksEmptyDir.Buildermedium(String medium)The medium to store the volume.EksEmptyDir.BuildersizeLimit(String sizeLimit)The maximum size of the volume.-
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
-
medium
EksEmptyDir.Builder medium(String medium)
The medium to store the volume. The default value is an empty string, which uses the storage of the node.
- ""
-
(Default) Use the disk storage of the node.
- "Memory"
-
Use the
tmpfsvolume that's backed by the RAM of the node. Contents of the volume are lost when the node reboots, and any storage on the volume counts against the container's memory limit.
- Parameters:
medium- The medium to store the volume. The default value is an empty string, which uses the storage of the node.- ""
-
(Default) Use the disk storage of the node.
- "Memory"
-
Use the
tmpfsvolume that's backed by the RAM of the node. Contents of the volume are lost when the node reboots, and any storage on the volume counts against the container's memory limit.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sizeLimit
EksEmptyDir.Builder sizeLimit(String sizeLimit)
The maximum size of the volume. By default, there's no maximum size defined.
- Parameters:
sizeLimit- The maximum size of the volume. By default, there's no maximum size defined.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-