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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-batch/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.

Returns:



4463
4464
4465
4466
4467
4468
4469
4470
# File 'gems/aws-sdk-batch/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.

Returns:



4463
4464
4465
4466
4467
4468
4469
4470
# File 'gems/aws-sdk-batch/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.

Returns:

  • (String)


4463
4464
4465
4466
4467
4468
4469
4470
# File 'gems/aws-sdk-batch/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.

Returns:



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

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