You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

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

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing UpdateCrawlerScheduleRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  crawler_name: "NameString", # required
  schedule: "CronExpression",
}

Instance Attribute Summary collapse

Instance Attribute Details

#crawler_nameString

The name of the crawler whose schedule to update.

Returns:

  • (String)

    The name of the crawler whose schedule to update.

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

Returns:

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