Class: Aws::ElasticsearchService::Types::AutoTuneOptions

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

Overview

Specifies the Auto-Tune options: the Auto-Tune desired state for the domain, rollback state when disabling Auto-Tune options and list of maintenance schedules.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#desired_stateString

Specifies the Auto-Tune desired state. Valid values are ENABLED, DISABLED.

Returns:

  • (String)


424
425
426
427
428
429
430
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 424

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

#maintenance_schedulesArray<Types::AutoTuneMaintenanceSchedule>

Specifies list of maitenance schedules. See the [Developer Guide] for more information.

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



424
425
426
427
428
429
430
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 424

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

#rollback_on_disableString

Specifies the rollback state while disabling Auto-Tune for the domain. Valid values are NO_ROLLBACK, DEFAULT_ROLLBACK.

Returns:

  • (String)


424
425
426
427
428
429
430
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 424

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