Method: Aws::ElastiCache::Types::ModifyReplicationGroupMessage#preferred_maintenance_window

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

#preferred_maintenance_windowString

Specifies the weekly time range during which maintenance on the cluster is performed. It is specified as a range in the format ddd:hh24:mi-ddd:hh24:mi (24H Clock UTC). The minimum maintenance window is a 60 minute period.

Valid values for ‘ddd` are:

  • ‘sun`

  • ‘mon`

  • ‘tue`

  • ‘wed`

  • ‘thu`

  • ‘fri`

  • ‘sat`

Example: ‘sun:23:00-mon:01:30`

Returns:

  • (String)


6585
6586
6587
6588
6589
6590
6591
6592
6593
6594
6595
6596
6597
6598
6599
6600
6601
6602
6603
6604
6605
6606
6607
6608
6609
6610
6611
6612
6613
6614
6615
6616
6617
6618
# File 'lib/aws-sdk-elasticache/types.rb', line 6585

class ModifyReplicationGroupMessage < Struct.new(
  :replication_group_id,
  :replication_group_description,
  :primary_cluster_id,
  :snapshotting_cluster_id,
  :automatic_failover_enabled,
  :multi_az_enabled,
  :node_group_id,
  :cache_security_group_names,
  :security_group_ids,
  :preferred_maintenance_window,
  :notification_topic_arn,
  :cache_parameter_group_name,
  :notification_topic_status,
  :apply_immediately,
  :engine,
  :engine_version,
  :auto_minor_version_upgrade,
  :snapshot_retention_limit,
  :snapshot_window,
  :cache_node_type,
  :auth_token,
  :auth_token_update_strategy,
  :user_group_ids_to_add,
  :user_group_ids_to_remove,
  :remove_user_groups,
  :log_delivery_configurations,
  :ip_discovery,
  :transit_encryption_enabled,
  :transit_encryption_mode,
  :cluster_mode)
  SENSITIVE = []
  include Aws::Structure
end