Class: Aws::GlueDataBrew::Types::UpdateScheduleRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::GlueDataBrew::Types::UpdateScheduleRequest
- Defined in:
- gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb
Overview
Note:
When making an API call, you may pass UpdateScheduleRequest data as a hash:
{
job_names: ["JobName"],
cron_expression: "CronExpression", # required
name: "ScheduleName", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cron_expression ⇒ String
The date or dates and time or times when the jobs are to be run.
-
#job_names ⇒ Array<String>
The name or names of one or more jobs to be run for this schedule.
-
#name ⇒ String
The name of the schedule to update.
Instance Attribute Details
#cron_expression ⇒ String
The date or dates and time or times when the jobs are to be run. For more information, see Cron expressions in the Glue DataBrew Developer Guide.
5556 5557 5558 5559 5560 5561 5562 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 5556 class UpdateScheduleRequest < Struct.new( :job_names, :cron_expression, :name) SENSITIVE = [] include Aws::Structure end |
#job_names ⇒ Array<String>
The name or names of one or more jobs to be run for this schedule.
5556 5557 5558 5559 5560 5561 5562 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 5556 class UpdateScheduleRequest < Struct.new( :job_names, :cron_expression, :name) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the schedule to update.
5556 5557 5558 5559 5560 5561 5562 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 5556 class UpdateScheduleRequest < Struct.new( :job_names, :cron_expression, :name) SENSITIVE = [] include Aws::Structure end |