Class: Aws::Deadline::Types::JobEntity
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Deadline::Types::JobEntity
 
- 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.
Direct Known Subclasses
EnvironmentDetails, JobAttachmentDetails, JobDetails, StepDetails, Unknown
Defined Under Namespace
Classes: EnvironmentDetails, JobAttachmentDetails, JobDetails, StepDetails, Unknown
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #environment_details  ⇒ Types::EnvironmentDetailsEntity 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The environment details for the job entity. 
- 
  
    
      #job_attachment_details  ⇒ Types::JobAttachmentDetailsEntity 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The job attachment details. 
- 
  
    
      #job_details  ⇒ Types::JobDetailsEntity 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The job details. 
- 
  
    
      #step_details  ⇒ Types::StepDetailsEntity 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The step details. 
- 
  
    
      #unknown  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Returns the value of attribute unknown. 
Instance Attribute Details
#environment_details ⇒ Types::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 'gems/aws-sdk-deadline/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 | 
#job_attachment_details ⇒ Types::JobAttachmentDetailsEntity
The job attachment details.
| 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 | # File 'gems/aws-sdk-deadline/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 | 
#job_details ⇒ Types::JobDetailsEntity
The job details.
| 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 | # File 'gems/aws-sdk-deadline/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 | 
#step_details ⇒ Types::StepDetailsEntity
The step details.
| 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 | # File 'gems/aws-sdk-deadline/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 | 
#unknown ⇒ Object
Returns the value of attribute unknown
| 4953 4954 4955 | # File 'gems/aws-sdk-deadline/lib/aws-sdk-deadline/types.rb', line 4953 def unknown @unknown end |