Interface VolumeMount.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<VolumeMount.Builder,VolumeMount>,SdkBuilder<VolumeMount.Builder,VolumeMount>,SdkPojo
- Enclosing class:
- VolumeMount
public static interface VolumeMount.Builder extends SdkPojo, CopyableBuilder<VolumeMount.Builder,VolumeMount>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VolumeMount.BuildermountPath(String mountPath)The path in the container at which the volume should be mounted.VolumeMount.Buildername(String name)The name 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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
name
VolumeMount.Builder name(String name)
The name of the volume.
- Parameters:
name- The name of the volume.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
mountPath
VolumeMount.Builder mountPath(String mountPath)
The path in the container at which the volume should be mounted.
- Parameters:
mountPath- The path in the container at which the volume should be mounted.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-