Class: Aws::Batch::Types::EksContainerVolumeMount
- Inherits:
-
Struct
- Object
- Struct
- Aws::Batch::Types::EksContainerVolumeMount
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-batch/types.rb
Overview
The volume mounts for a container for an Amazon EKS job. For more information about volumes and volume mounts in Kubernetes, see
- Volumes][1
-
in the *Kubernetes documentation*.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#mount_path ⇒ String
The path on the container where the volume is mounted.
-
#name ⇒ String
The name the volume mount.
-
#read_only ⇒ Boolean
If this value is ‘true`, the container has read-only access to the volume.
Instance Attribute Details
#mount_path ⇒ String
The path on the container where the volume is mounted.
4000 4001 4002 4003 4004 4005 4006 |
# File 'lib/aws-sdk-batch/types.rb', line 4000 class EksContainerVolumeMount < Struct.new( :name, :mount_path, :read_only) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name the volume mount. This must match the name of one of the volumes in the pod.
4000 4001 4002 4003 4004 4005 4006 |
# File 'lib/aws-sdk-batch/types.rb', line 4000 class EksContainerVolumeMount < Struct.new( :name, :mount_path, :read_only) SENSITIVE = [] include Aws::Structure end |
#read_only ⇒ Boolean
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 is `false`.
4000 4001 4002 4003 4004 4005 4006 |
# File 'lib/aws-sdk-batch/types.rb', line 4000 class EksContainerVolumeMount < Struct.new( :name, :mount_path, :read_only) SENSITIVE = [] include Aws::Structure end |