Class: Aws::Batch::Types::EksPersistentVolumeClaim

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#claim_nameString

The name of the persistentVolumeClaim bounded to a persistentVolume. For more information, see Persistent Volume Claims in the Kubernetes documentation.

Returns:

  • (String)


4190
4191
4192
4193
4194
4195
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 4190

class EksPersistentVolumeClaim < Struct.new(
  :claim_name,
  :read_only)
  SENSITIVE = []
  include Aws::Structure
end

#read_onlyBoolean

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.

Returns:

  • (Boolean)


4190
4191
4192
4193
4194
4195
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 4190

class EksPersistentVolumeClaim < Struct.new(
  :claim_name,
  :read_only)
  SENSITIVE = []
  include Aws::Structure
end