Class: Aws::Glue::Types::ResetJobBookmarkRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::ResetJobBookmarkRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Note:
When making an API call, you may pass ResetJobBookmarkRequest data as a hash:
{
job_name: "JobName", # required
run_id: "RunId",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#job_name ⇒ String
The name of the job in question.
-
#run_id ⇒ String
The unique run identifier associated with this job run.
Instance Attribute Details
#job_name ⇒ String
The name of the job in question.
12890 12891 12892 12893 12894 12895 |
# File 'lib/aws-sdk-glue/types.rb', line 12890 class ResetJobBookmarkRequest < Struct.new( :job_name, :run_id) SENSITIVE = [] include Aws::Structure end |
#run_id ⇒ String
The unique run identifier associated with this job run.
12890 12891 12892 12893 12894 12895 |
# File 'lib/aws-sdk-glue/types.rb', line 12890 class ResetJobBookmarkRequest < Struct.new( :job_name, :run_id) SENSITIVE = [] include Aws::Structure end |