Class: Aws::Glue::Types::Schedule

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

Overview

A scheduling object using a cron statement to schedule an event.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#schedule_expressionString

A 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)


18679
18680
18681
18682
18683
18684
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 18679

class Schedule < Struct.new(
  :schedule_expression,
  :state)
  SENSITIVE = []
  include Aws::Structure
end

#stateString

The state of the schedule.

Returns:

  • (String)


18679
18680
18681
18682
18683
18684
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 18679

class Schedule < Struct.new(
  :schedule_expression,
  :state)
  SENSITIVE = []
  include Aws::Structure
end