Class: Aws::Batch::Types::EksPersistentVolumeClaim
- Inherits:
-
Struct
- Object
- Struct
- Aws::Batch::Types::EksPersistentVolumeClaim
- Defined in:
- gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb
Overview
A persistentVolumeClaim volume is used to mount a
PersistentVolume into a Pod. PersistentVolumeClaims are a way for
users to "claim" durable storage without knowing the details of the
particular cloud environment. See the information about
PersistentVolumes in the Kubernetes documentation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#claim_name ⇒ String
The name of the
persistentVolumeClaimbounded to apersistentVolume. -
#read_only ⇒ Boolean
An optional boolean value indicating if the mount is read only.
Instance Attribute Details
#claim_name ⇒ String
The name of the persistentVolumeClaim bounded to a
persistentVolume. For more information, see Persistent Volume
Claims in the Kubernetes documentation.
5220 5221 5222 5223 5224 5225 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 5220 class EksPersistentVolumeClaim < Struct.new( :claim_name, :read_only) SENSITIVE = [] include Aws::Structure end |
#read_only ⇒ Boolean
An optional boolean value indicating if the mount is read only. Default is false. For more information, see Read Only Mounts in the Kubernetes documentation.
5220 5221 5222 5223 5224 5225 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 5220 class EksPersistentVolumeClaim < Struct.new( :claim_name, :read_only) SENSITIVE = [] include Aws::Structure end |