Class: Aws::Batch::Types::EksVolume
- Inherits:
-
Struct
- Object
- Struct
- Aws::Batch::Types::EksVolume
- 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
-
#empty_dir ⇒ Types::EksEmptyDir
Specifies the configuration of a Kubernetes ‘emptyDir` volume.
-
#host_path ⇒ Types::EksHostPath
Specifies the configuration of a Kubernetes ‘hostPath` volume.
-
#name ⇒ String
The name of the volume.
-
#secret ⇒ Types::EksSecret
Specifies the configuration of a Kubernetes ‘secret` volume.
Instance Attribute Details
#empty_dir ⇒ Types::EksEmptyDir
Specifies the configuration of a Kubernetes ‘emptyDir` volume. For more information, see [emptyDir] in the *Kubernetes documentation*.
4499 4500 4501 4502 4503 4504 4505 4506 |
# File 'lib/aws-sdk-batch/types.rb', line 4499 class EksVolume < Struct.new( :name, :host_path, :empty_dir, :secret) SENSITIVE = [] include Aws::Structure end |
#host_path ⇒ Types::EksHostPath
Specifies the configuration of a Kubernetes ‘hostPath` volume. For more information, see [hostPath] in the *Kubernetes documentation*.
4499 4500 4501 4502 4503 4504 4505 4506 |
# File 'lib/aws-sdk-batch/types.rb', line 4499 class EksVolume < Struct.new( :name, :host_path, :empty_dir, :secret) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
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
4499 4500 4501 4502 4503 4504 4505 4506 |
# File 'lib/aws-sdk-batch/types.rb', line 4499 class EksVolume < Struct.new( :name, :host_path, :empty_dir, :secret) SENSITIVE = [] include Aws::Structure end |
#secret ⇒ Types::EksSecret
Specifies the configuration of a Kubernetes ‘secret` volume. For more information, see [secret] in the *Kubernetes documentation*.
4499 4500 4501 4502 4503 4504 4505 4506 |
# File 'lib/aws-sdk-batch/types.rb', line 4499 class EksVolume < Struct.new( :name, :host_path, :empty_dir, :secret) SENSITIVE = [] include Aws::Structure end |