Method: Aws::Batch::Types::EksContainerDetail#command
- Defined in:
- lib/aws-sdk-batch/types.rb
#command ⇒ Array<String>
The entrypoint for the container. For more information, see
- Entrypoint][1
-
in the *Kubernetes documentation*.
[1]: kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/#entrypoint
4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 |
# File 'lib/aws-sdk-batch/types.rb', line 4410 class EksContainerDetail < Struct.new( :name, :image, :image_pull_policy, :command, :args, :env, :resources, :exit_code, :reason, :volume_mounts, :security_context) SENSITIVE = [] include Aws::Structure end |