Class: Aws::Deadline::Types::JobEntity

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb

Overview

Note:

JobEntity is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of JobEntity corresponding to the set member.

The details of a job entity.

Defined Under Namespace

Classes: EnvironmentDetails, JobAttachmentDetails, JobDetails, StepDetails, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#environment_detailsTypes::EnvironmentDetailsEntity

The environment details for the job entity.



4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 4248

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

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

#job_attachment_detailsTypes::JobAttachmentDetailsEntity

The job attachment details.



4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 4248

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

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

#job_detailsTypes::JobDetailsEntity

The job details.



4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 4248

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

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

#step_detailsTypes::StepDetailsEntity

The step details.



4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 4248

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

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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



4248
4249
4250
# File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 4248

def unknown
  @unknown
end