Class: Aws::Batch::Types::EksSecret
- Inherits:
-
Struct
- Object
- Struct
- Aws::Batch::Types::EksSecret
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-batch/types.rb
Overview
Specifies the configuration of a Kubernetes ‘secret` volume. For more information, see [secret] in the *Kubernetes documentation*.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#optional ⇒ Boolean
Specifies whether the secret or the secret’s keys must be defined.
-
#secret_name ⇒ String
The name of the secret.
Instance Attribute Details
#optional ⇒ Boolean
Specifies whether the secret or the secret’s keys must be defined.
4428 4429 4430 4431 4432 4433 |
# File 'lib/aws-sdk-batch/types.rb', line 4428 class EksSecret < Struct.new( :secret_name, :optional) SENSITIVE = [] include Aws::Structure end |
#secret_name ⇒ String
The name of the secret. 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
4428 4429 4430 4431 4432 4433 |
# File 'lib/aws-sdk-batch/types.rb', line 4428 class EksSecret < Struct.new( :secret_name, :optional) SENSITIVE = [] include Aws::Structure end |