Class: Aws::Redshift::Types::ModifyClusterSnapshotScheduleMessage

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 ModifyClusterSnapshotScheduleMessage data as a hash:

{
  cluster_identifier: "String", # required
  schedule_identifier: "String",
  disassociate_schedule: false,
}

Instance Attribute Summary collapse

Instance Attribute Details

#cluster_identifierString

A unique identifier for the cluster whose snapshot schedule you want to modify.

Returns:

  • (String)


5878
5879
5880
5881
5882
5883
# File 'lib/aws-sdk-redshift/types.rb', line 5878

class ModifyClusterSnapshotScheduleMessage < Struct.new(
  :cluster_identifier,
  :schedule_identifier,
  :disassociate_schedule)
  include Aws::Structure
end

#disassociate_scheduleBoolean

A boolean to indicate whether to remove the assoiciation between the cluster and the schedule.

Returns:

  • (Boolean)


5878
5879
5880
5881
5882
5883
# File 'lib/aws-sdk-redshift/types.rb', line 5878

class ModifyClusterSnapshotScheduleMessage < Struct.new(
  :cluster_identifier,
  :schedule_identifier,
  :disassociate_schedule)
  include Aws::Structure
end

#schedule_identifierString

A unique alphanumeric identifier for the schedule that you want to associate with the cluster.

Returns:

  • (String)


5878
5879
5880
5881
5882
5883
# File 'lib/aws-sdk-redshift/types.rb', line 5878

class ModifyClusterSnapshotScheduleMessage < Struct.new(
  :cluster_identifier,
  :schedule_identifier,
  :disassociate_schedule)
  include Aws::Structure
end