Class: Aws::Batch::Types::EksHostPath
- Inherits:
-
Struct
- Object
- Struct
- Aws::Batch::Types::EksHostPath
- Defined in:
- gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb
Overview
Specifies the configuration of a Kubernetes hostPath
volume. A
hostPath
volume mounts an existing file or directory from the host
node's filesystem into your pod. For more information, see
hostPath in the Kubernetes documentation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#path ⇒ String
The path of the file or directory on the host to mount into containers on the pod.
Instance Attribute Details
#path ⇒ String
The path of the file or directory on the host to mount into containers on the pod.
4073 4074 4075 4076 4077 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 4073 class EksHostPath < Struct.new( :path) SENSITIVE = [] include Aws::Structure end |