Class: Aws::Glue::Types::UpdateCrawlerScheduleRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-glue/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#crawler_nameString

The name of the crawler whose schedule to update.

Returns:

  • (String)


22120
22121
22122
22123
22124
22125
# File 'lib/aws-sdk-glue/types.rb', line 22120

class UpdateCrawlerScheduleRequest < Struct.new(
  :crawler_name,
  :schedule)
  SENSITIVE = []
  include Aws::Structure
end

#scheduleString

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 * * ? *)`.

[1]: docs.aws.amazon.com/glue/latest/dg/monitor-data-warehouse-schedule.html

Returns:

  • (String)


22120
22121
22122
22123
22124
22125
# File 'lib/aws-sdk-glue/types.rb', line 22120

class UpdateCrawlerScheduleRequest < Struct.new(
  :crawler_name,
  :schedule)
  SENSITIVE = []
  include Aws::Structure
end