Method: Aws::Batch::Types::JobDetail#parameters

Defined in:
lib/aws-sdk-batch/types.rb

#parametersHash<String,String>

Additional parameters that are passed to the job that replace parameter substitution placeholders or override any corresponding parameter defaults from the job definition.



5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
# File 'lib/aws-sdk-batch/types.rb', line 5982

class JobDetail < Struct.new(
  :job_arn,
  :job_name,
  :job_id,
  :job_queue,
  :status,
  :share_identifier,
  :scheduling_priority,
  :attempts,
  :status_reason,
  :created_at,
  :retry_strategy,
  :started_at,
  :stopped_at,
  :depends_on,
  :job_definition,
  :parameters,
  :container,
  :node_details,
  :node_properties,
  :array_properties,
  :timeout,
  :tags,
  :propagate_tags,
  :platform_capabilities,
  :eks_properties,
  :eks_attempts,
  :ecs_properties,
  :is_cancelled,
  :is_terminated,
  :consumable_resource_properties)
  SENSITIVE = []
  include Aws::Structure
end