Method: Aws::Redshift::Types::RestoreFromClusterSnapshotMessage#preferred_maintenance_window

Defined in:
lib/aws-sdk-redshift/types.rb

#preferred_maintenance_windowString

The weekly time range (in UTC) during which automated cluster maintenance can occur.

Format: ‘ddd:hh24:mi-ddd:hh24:mi`

Default: The value selected for the cluster from which the snapshot was taken. For more information about the time blocks for each region, see [Maintenance Windows] in Amazon Redshift Cluster Management Guide.

Valid Days: Mon | Tue | Wed | Thu | Fri | Sat | Sun

Constraints: Minimum 30-minute window.

[1]: docs.aws.amazon.com/redshift/latest/mgmt/working-with-clusters.html#rs-maintenance-windows

Returns:

  • (String)


10849
10850
10851
10852
10853
10854
10855
10856
10857
10858
10859
10860
10861
10862
10863
10864
10865
10866
10867
10868
10869
10870
10871
10872
10873
10874
10875
10876
10877
10878
10879
10880
10881
10882
10883
10884
10885
10886
10887
10888
10889
# File 'lib/aws-sdk-redshift/types.rb', line 10849

class RestoreFromClusterSnapshotMessage < Struct.new(
  :cluster_identifier,
  :snapshot_identifier,
  :snapshot_arn,
  :snapshot_cluster_identifier,
  :port,
  :availability_zone,
  :allow_version_upgrade,
  :cluster_subnet_group_name,
  :publicly_accessible,
  :owner_account,
  :hsm_client_certificate_identifier,
  :hsm_configuration_identifier,
  :elastic_ip,
  :cluster_parameter_group_name,
  :cluster_security_groups,
  :vpc_security_group_ids,
  :preferred_maintenance_window,
  :automated_snapshot_retention_period,
  :manual_snapshot_retention_period,
  :kms_key_id,
  :node_type,
  :enhanced_vpc_routing,
  :additional_info,
  :iam_roles,
  :maintenance_track_name,
  :snapshot_schedule_identifier,
  :number_of_nodes,
  :availability_zone_relocation,
  :aqua_configuration_status,
  :default_iam_role_arn,
  :reserved_node_id,
  :target_reserved_node_offering_id,
  :encrypted,
  :manage_master_password,
  :master_password_secret_kms_key_id,
  :ip_address_type,
  :multi_az)
  SENSITIVE = []
  include Aws::Structure
end