Class: Aws::Redshift::Types::ModifySnapshotScheduleMessage

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

Overview

Note:

When making an API call, you may pass ModifySnapshotScheduleMessage data as a hash:

{
  schedule_identifier: "String", # required
  schedule_definitions: ["String"], # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#schedule_definitionsArray<String>

An updated list of schedule definitions. A schedule definition is made up of schedule expressions, for example, “cron(30 12 *)” or “rate(12 hours)”.

Returns:

  • (Array<String>)


6106
6107
6108
6109
6110
# File 'lib/aws-sdk-redshift/types.rb', line 6106

class ModifySnapshotScheduleMessage < Struct.new(
  :schedule_identifier,
  :schedule_definitions)
  include Aws::Structure
end

#schedule_identifierString

A unique alphanumeric identifier of the schedule to modify.

Returns:

  • (String)


6106
6107
6108
6109
6110
# File 'lib/aws-sdk-redshift/types.rb', line 6106

class ModifySnapshotScheduleMessage < Struct.new(
  :schedule_identifier,
  :schedule_definitions)
  include Aws::Structure
end