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

Class: Aws::Redshift::Types::ModifyClusterMaintenanceMessage

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

Overview

Note:

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

{
  cluster_identifier: "String", # required
  defer_maintenance: false,
  defer_maintenance_identifier: "String",
  defer_maintenance_start_time: Time.now,
  defer_maintenance_end_time: Time.now,
  defer_maintenance_duration: 1,
}

Instance Attribute Summary collapse

Instance Attribute Details

#cluster_identifierString

A unique identifier for the cluster.

Returns:

  • (String)

    A unique identifier for the cluster.

#defer_maintenanceBoolean

A boolean indicating whether to enable the deferred maintenance window.

Returns:

  • (Boolean)

    A boolean indicating whether to enable the deferred maintenance window.

#defer_maintenance_durationInteger

An integer indicating the duration of the maintenance window in days. If you specify a duration, you can\'t specify an end time. The duration must be 45 days or less.

Returns:

  • (Integer)

    An integer indicating the duration of the maintenance window in days.

#defer_maintenance_end_timeTime

A timestamp indicating end time for the deferred maintenance window. If you specify an end time, you can\'t specify a duration.

Returns:

  • (Time)

    A timestamp indicating end time for the deferred maintenance window.

#defer_maintenance_identifierString

A unique identifier for the deferred maintenance window.

Returns:

  • (String)

    A unique identifier for the deferred maintenance window.

#defer_maintenance_start_timeTime

A timestamp indicating the start time for the deferred maintenance window.

Returns:

  • (Time)

    A timestamp indicating the start time for the deferred maintenance window.