Class: Aws::OpenSearchService::Types::AutoTuneOptionsInput

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

Overview

Options for configuring Auto-Tune. For more information, see

Auto-Tune for Amazon OpenSearch Service][1

[1]: docs.aws.amazon.com/opensearch-service/latest/developerguide/auto-tune.html

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#desired_stateString

Whether Auto-Tune is enabled or disabled.

Returns:

  • (String)


789
790
791
792
793
794
795
# File 'lib/aws-sdk-opensearchservice/types.rb', line 789

class AutoTuneOptionsInput < Struct.new(
  :desired_state,
  :maintenance_schedules,
  :use_off_peak_window)
  SENSITIVE = []
  include Aws::Structure
end

#maintenance_schedulesArray<Types::AutoTuneMaintenanceSchedule>

A list of maintenance schedules during which Auto-Tune can deploy changes. Maintenance windows are deprecated and have been replaced with [off-peak windows].

[1]: docs.aws.amazon.com/opensearch-service/latest/developerguide/off-peak.html



789
790
791
792
793
794
795
# File 'lib/aws-sdk-opensearchservice/types.rb', line 789

class AutoTuneOptionsInput < Struct.new(
  :desired_state,
  :maintenance_schedules,
  :use_off_peak_window)
  SENSITIVE = []
  include Aws::Structure
end

#use_off_peak_windowBoolean

Whether to schedule Auto-Tune optimizations that require blue/green deployments during the domain’s configured daily off-peak window.

Returns:

  • (Boolean)


789
790
791
792
793
794
795
# File 'lib/aws-sdk-opensearchservice/types.rb', line 789

class AutoTuneOptionsInput < Struct.new(
  :desired_state,
  :maintenance_schedules,
  :use_off_peak_window)
  SENSITIVE = []
  include Aws::Structure
end