Class: Aws::Batch::Types::EksSecret
- Inherits:
-
Struct
- Object
- Struct
- Aws::Batch::Types::EksSecret
- Defined in:
- gems/aws-sdk-batch/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.
4449 4450 4451 4452 4453 4454 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 4449 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.
4449 4450 4451 4452 4453 4454 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 4449 class EksSecret < Struct.new( :secret_name, :optional) SENSITIVE = [] include Aws::Structure end |