Class: Aws::Batch::Types::EksVolume

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-batch/types.rb

Overview

Specifies an Amazon EKS volume for a job definition.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#empty_dirTypes::EksEmptyDir

Specifies the configuration of a Kubernetes ‘emptyDir` volume. For more information, see [emptyDir] in the *Kubernetes documentation*.

[1]: kubernetes.io/docs/concepts/storage/volumes/#emptydir

Returns:



4463
4464
4465
4466
4467
4468
4469
4470
# File 'lib/aws-sdk-batch/types.rb', line 4463

class EksVolume < Struct.new(
  :name,
  :host_path,
  :empty_dir,
  :secret)
  SENSITIVE = []
  include Aws::Structure
end

#host_pathTypes::EksHostPath

Specifies the configuration of a Kubernetes ‘hostPath` volume. For more information, see [hostPath] in the *Kubernetes documentation*.

[1]: kubernetes.io/docs/concepts/storage/volumes/#hostpath

Returns:



4463
4464
4465
4466
4467
4468
4469
4470
# File 'lib/aws-sdk-batch/types.rb', line 4463

class EksVolume < Struct.new(
  :name,
  :host_path,
  :empty_dir,
  :secret)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name of the volume. The name must be allowed as a DNS subdomain name. For more information, see [DNS subdomain names] in the *Kubernetes documentation*.

[1]: kubernetes.io/docs/concepts/overview/working-with-objects/names/#dns-subdomain-names

Returns:

  • (String)


4463
4464
4465
4466
4467
4468
4469
4470
# File 'lib/aws-sdk-batch/types.rb', line 4463

class EksVolume < Struct.new(
  :name,
  :host_path,
  :empty_dir,
  :secret)
  SENSITIVE = []
  include Aws::Structure
end

#secretTypes::EksSecret

Specifies the configuration of a Kubernetes ‘secret` volume. For more information, see [secret] in the *Kubernetes documentation*.

[1]: kubernetes.io/docs/concepts/storage/volumes/#secret

Returns:



4463
4464
4465
4466
4467
4468
4469
4470
# File 'lib/aws-sdk-batch/types.rb', line 4463

class EksVolume < Struct.new(
  :name,
  :host_path,
  :empty_dir,
  :secret)
  SENSITIVE = []
  include Aws::Structure
end