Method: Aws::Deadline::Types::JobEntity#environment_details

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

#environment_detailsTypes::EnvironmentDetailsEntity

The environment details for the job entity.



4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
# File 'lib/aws-sdk-deadline/types.rb', line 4953

class JobEntity < Struct.new(
  :job_details,
  :job_attachment_details,
  :step_details,
  :environment_details,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class JobDetails < JobEntity; end
  class JobAttachmentDetails < JobEntity; end
  class StepDetails < JobEntity; end
  class EnvironmentDetails < JobEntity; end
  class Unknown < JobEntity; end
end