Class: Aws::ElasticsearchService::Types::AutoTuneOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticsearchService::Types::AutoTuneOptions
- 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
-
#desired_state ⇒ String
Specifies the Auto-Tune desired state.
-
#maintenance_schedules ⇒ Array<Types::AutoTuneMaintenanceSchedule>
Specifies list of maitenance schedules.
-
#rollback_on_disable ⇒ String
Specifies the rollback state while disabling Auto-Tune for the domain.
Instance Attribute Details
#desired_state ⇒ String
Specifies the Auto-Tune desired state. Valid values are ENABLED, DISABLED.
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_schedules ⇒ Array<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_disable ⇒ String
Specifies the rollback state while disabling Auto-Tune for the domain. Valid values are NO_ROLLBACK, DEFAULT_ROLLBACK.
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 |