Class: Aws::Glue::Types::GetJobRunRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::GetJobRunRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Note:
When making an API call, you may pass GetJobRunRequest data as a hash:
{
job_name: "NameString", # required
run_id: "IdString", # required
predecessors_included: false,
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#job_name ⇒ String
Name of the job definition being run.
-
#predecessors_included ⇒ Boolean
True if a list of predecessor runs should be returned.
-
#run_id ⇒ String
The ID of the job run.
Instance Attribute Details
#job_name ⇒ String
Name of the job definition being run.
7408 7409 7410 7411 7412 7413 7414 |
# File 'lib/aws-sdk-glue/types.rb', line 7408 class GetJobRunRequest < Struct.new( :job_name, :run_id, :predecessors_included) SENSITIVE = [] include Aws::Structure end |
#predecessors_included ⇒ Boolean
True if a list of predecessor runs should be returned.
7408 7409 7410 7411 7412 7413 7414 |
# File 'lib/aws-sdk-glue/types.rb', line 7408 class GetJobRunRequest < Struct.new( :job_name, :run_id, :predecessors_included) SENSITIVE = [] include Aws::Structure end |
#run_id ⇒ String
The ID of the job run.
7408 7409 7410 7411 7412 7413 7414 |
# File 'lib/aws-sdk-glue/types.rb', line 7408 class GetJobRunRequest < Struct.new( :job_name, :run_id, :predecessors_included) SENSITIVE = [] include Aws::Structure end |