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 interface
EksContainerVolumeMount.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EksContainerVolumeMount.Builder
builder()
boolean
equals(Object obj)
boolean
equalsBySdkFields(Object obj)
<T> Optional<T>
getValueForField(String fieldName, Class<T> clazz)
int
hashCode()
String
mountPath()
The path on the container where the volume is mounted.String
name()
The name the volume mount.Boolean
readOnly()
If this value istrue
, the container has read-only access to the volume.List<SdkField<?>>
sdkFields()
static Class<? extends EksContainerVolumeMount.Builder>
serializableBuilderClass()
EksContainerVolumeMount.Builder
toBuilder()
String
toString()
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.
-
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:
toBuilder
in 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:
equalsBySdkFields
in 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.
-
-