Class: Aws::GlueDataBrew::Types::ListJobRunsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::GlueDataBrew::Types::ListJobRunsRequest
- Defined in:
- gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb
Overview
Note:
When making an API call, you may pass ListJobRunsRequest data as a hash:
{
name: "JobName", # required
max_results: 1,
next_token: "NextToken",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of results to return in this request.
-
#name ⇒ String
The name of the job.
-
#next_token ⇒ String
The token returned by a previous call to retrieve the next set of results.
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of results to return in this request.
3183 3184 3185 3186 3187 3188 3189 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 3183 class ListJobRunsRequest < Struct.new( :name, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the job.
3183 3184 3185 3186 3187 3188 3189 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 3183 class ListJobRunsRequest < Struct.new( :name, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The token returned by a previous call to retrieve the next set of results.
3183 3184 3185 3186 3187 3188 3189 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 3183 class ListJobRunsRequest < Struct.new( :name, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |