Class: Aws::GlueDataBrew::Types::ListSchedulesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::GlueDataBrew::Types::ListSchedulesRequest
- Defined in:
- gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb
Overview
Note:
When making an API call, you may pass ListSchedulesRequest data as a hash:
{
job_name: "JobName",
max_results: 1,
next_token: "NextToken",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#job_name ⇒ String
The name of the job that these schedules apply to.
-
#max_results ⇒ Integer
The maximum number of results to return in this request.
-
#next_token ⇒ String
The token returned by a previous call to retrieve the next set of results.
Instance Attribute Details
#job_name ⇒ String
The name of the job that these schedules apply to.
3496 3497 3498 3499 3500 3501 3502 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 3496 class ListSchedulesRequest < Struct.new( :job_name, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of results to return in this request.
3496 3497 3498 3499 3500 3501 3502 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 3496 class ListSchedulesRequest < Struct.new( :job_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.
3496 3497 3498 3499 3500 3501 3502 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 3496 class ListSchedulesRequest < Struct.new( :job_name, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |