Class: Aws::Batch::Types::EksSecret

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#optionalBoolean

Specifies whether the secret or the secret's keys must be defined.

Returns:

  • (Boolean)


5673
5674
5675
5676
5677
5678
# File 'lib/aws-sdk-batch/types.rb', line 5673

class EksSecret < Struct.new(
  :secret_name,
  :optional)
  SENSITIVE = []
  include Aws::Structure
end

#secret_nameString

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.

Returns:

  • (String)


5673
5674
5675
5676
5677
5678
# File 'lib/aws-sdk-batch/types.rb', line 5673

class EksSecret < Struct.new(
  :secret_name,
  :optional)
  SENSITIVE = []
  include Aws::Structure
end