Class EksContainerVolumeMount
- java.lang.Object
-
- software.amazon.awssdk.services.batch.model.EksContainerVolumeMount
-
- All Implemented Interfaces:
Serializable,SdkPojo,ToCopyableBuilder<EksContainerVolumeMount.Builder,EksContainerVolumeMount>
@Generated("software.amazon.awssdk:codegen") public final class EksContainerVolumeMount extends Object implements SdkPojo, Serializable, ToCopyableBuilder<EksContainerVolumeMount.Builder,EksContainerVolumeMount>
The volume mounts for a container for an Amazon EKS job. For more information about volumes and volume mounts in Kubernetes, see Volumes in the Kubernetes documentation.
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceEksContainerVolumeMount.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EksContainerVolumeMount.Builderbuilder()booleanequals(Object obj)booleanequalsBySdkFields(Object obj)<T> Optional<T>getValueForField(String fieldName, Class<T> clazz)inthashCode()StringmountPath()The path on the container where the volume is mounted.Stringname()The name the volume mount.BooleanreadOnly()If this value istrue, the container has read-only access to the volume.Map<String,SdkField<?>>sdkFieldNameToField()List<SdkField<?>>sdkFields()static Class<? extends EksContainerVolumeMount.Builder>serializableBuilderClass()StringsubPath()A sub-path inside the referenced volume instead of its root.EksContainerVolumeMount.BuildertoBuilder()StringtoString()Returns a string representation of this object.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
name
public final String name()
The name the volume mount. This must match the name of one of the volumes in the pod.
- Returns:
- The name the volume mount. This must match the name of one of the volumes in the pod.
-
mountPath
public final String mountPath()
The path on the container where the volume is mounted.
- Returns:
- The path on the container where the volume is mounted.
-
subPath
public final String subPath()
A sub-path inside the referenced volume instead of its root.
- Returns:
- A sub-path inside the referenced volume instead of its root.
-
readOnly
public final Boolean readOnly()
If this value is
true, the container has read-only access to the volume. Otherwise, the container can write to the volume. The default value isfalse.- Returns:
- If this value is
true, the container has read-only access to the volume. Otherwise, the container can write to the volume. The default value isfalse.
-
toBuilder
public EksContainerVolumeMount.Builder toBuilder()
- Specified by:
toBuilderin interfaceToCopyableBuilder<EksContainerVolumeMount.Builder,EksContainerVolumeMount>
-
builder
public static EksContainerVolumeMount.Builder builder()
-
serializableBuilderClass
public static Class<? extends EksContainerVolumeMount.Builder> serializableBuilderClass()
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFieldsin interfaceSdkPojo
-
toString
public final String toString()
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
-
sdkFieldNameToField
public final Map<String,SdkField<?>> sdkFieldNameToField()
- Specified by:
sdkFieldNameToFieldin interfaceSdkPojo
-
-