Class: Aws::DataZone::Types::JobRunDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataZone::Types::JobRunDetails
- Defined in:
- gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb
Overview
Note:
JobRunDetails is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of JobRunDetails corresponding to the set member.
The details of a job run.
Direct Known Subclasses
Defined Under Namespace
Classes: LineageRunDetails, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#lineage_run_details ⇒ Types::LineageRunDetails
The data lineage details of a job run.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#lineage_run_details ⇒ Types::LineageRunDetails
The data lineage details of a job run.
10946 10947 10948 10949 10950 10951 10952 10953 10954 10955 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 10946 class JobRunDetails < Struct.new( :lineage_run_details, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class LineageRunDetails < JobRunDetails; end class Unknown < JobRunDetails; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
10946 10947 10948 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 10946 def unknown @unknown end |