Class: Aws::GlueDataBrew::Types::StopJobRunRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::GlueDataBrew::Types::StopJobRunRequest
- Defined in:
- gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb
Overview
Note:
When making an API call, you may pass StopJobRunRequest data as a hash:
{
name: "JobName", # required
run_id: "JobRunId", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the job to be stopped.
-
#run_id ⇒ String
The ID of the job run to be stopped.
Instance Attribute Details
#name ⇒ String
The name of the job to be stopped.
4765 4766 4767 4768 4769 4770 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 4765 class StopJobRunRequest < Struct.new( :name, :run_id) SENSITIVE = [] include Aws::Structure end |
#run_id ⇒ String
The ID of the job run to be stopped.
4765 4766 4767 4768 4769 4770 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 4765 class StopJobRunRequest < Struct.new( :name, :run_id) SENSITIVE = [] include Aws::Structure end |