Class: Aws::Glue::Types::UpdateCrawlerScheduleRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::UpdateCrawlerScheduleRequest
- Defined in:
- gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#crawler_name ⇒ String
The name of the crawler whose schedule to update.
-
#schedule ⇒ String
The updated
cron
expression used to specify the schedule (see [Time-Based Schedules for Jobs and Crawlers][1]. For example, to run something every day at 12:15 UTC, you would specify:cron(15 12 * * ? *)
.
Instance Attribute Details
#crawler_name ⇒ String
The name of the crawler whose schedule to update.
26660 26661 26662 26663 26664 26665 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 26660 class UpdateCrawlerScheduleRequest < Struct.new( :crawler_name, :schedule) SENSITIVE = [] include Aws::Structure end |
#schedule ⇒ String
The updated cron
expression used to specify the schedule (see
Time-Based Schedules for Jobs and Crawlers. For example, to run
something every day at 12:15 UTC, you would specify: cron(15 12 * *
? *)
.
26660 26661 26662 26663 26664 26665 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 26660 class UpdateCrawlerScheduleRequest < Struct.new( :crawler_name, :schedule) SENSITIVE = [] include Aws::Structure end |