Class: Aws::RedshiftServerless::Types::Schedule

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

Overview

Note:

Schedule is a union - when making an API calls you must set exactly one of the members.

Note:

Schedule is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of Schedule corresponding to the set member.

The schedule of when Amazon Redshift Serverless should run the scheduled action.

Direct Known Subclasses

At, Cron, Unknown

Defined Under Namespace

Classes: At, Cron, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#atTime

The timestamp of when Amazon Redshift Serverless should run the scheduled action. Format of at expressions is “‘at(yyyy-mm-ddThh:mm:ss)`”. For example, “`at(2016-03-04T17:27:00)`”.

Returns:

  • (Time)


2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
# File 'lib/aws-sdk-redshiftserverless/types.rb', line 2489

class Schedule < Struct.new(
  :at,
  :cron,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class At < Schedule; end
  class Cron < Schedule; end
  class Unknown < Schedule; end
end

#cronString

The cron expression to use to schedule a recurring scheduled action. Schedule invocations must be separated by at least one hour.

Format of cron expressions is “‘cron(Minutes Hours Day-of-month Month Day-of-week Year)`”. For example, “`cron(0 10 ? * MON *)`”. For more information, see [Cron Expressions] in the *Amazon CloudWatch Events User Guide*.

[1]: docs.aws.amazon.com/AmazonCloudWatch/latest/events/ScheduledEvents.html#CronExpressions

Returns:

  • (String)


2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
# File 'lib/aws-sdk-redshiftserverless/types.rb', line 2489

class Schedule < Struct.new(
  :at,
  :cron,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class At < Schedule; end
  class Cron < Schedule; end
  class Unknown < Schedule; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



2489
2490
2491
# File 'lib/aws-sdk-redshiftserverless/types.rb', line 2489

def unknown
  @unknown
end