Class: Aws::OpenSearchService::Types::AutoTuneOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::OpenSearchService::Types::AutoTuneOptions
- Defined in:
- gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb
Overview
Auto-Tune settings when updating a domain. For more information, see Auto-Tune for Amazon OpenSearch Service.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#desired_state ⇒ String
Whether Auto-Tune is enabled or disabled.
-
#maintenance_schedules ⇒ Array<Types::AutoTuneMaintenanceSchedule>
DEPRECATED.
-
#rollback_on_disable ⇒ String
When disabling Auto-Tune, specify
NO_ROLLBACK
to retain all prior Auto-Tune settings orDEFAULT_ROLLBACK
to revert to the OpenSearch Service defaults. -
#use_off_peak_window ⇒ Boolean
Whether to use the domain's [off-peak window][1] to deploy configuration changes on the domain rather than a maintenance schedule.
Instance Attribute Details
#desired_state ⇒ String
Whether Auto-Tune is enabled or disabled.
801 802 803 804 805 806 807 808 |
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 801 class AutoTuneOptions < Struct.new( :desired_state, :rollback_on_disable, :maintenance_schedules, :use_off_peak_window) SENSITIVE = [] include Aws::Structure end |
#maintenance_schedules ⇒ Array<Types::AutoTuneMaintenanceSchedule>
DEPRECATED. Use off-peak window instead.
A list of maintenance schedules during which Auto-Tune can deploy changes.
801 802 803 804 805 806 807 808 |
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 801 class AutoTuneOptions < Struct.new( :desired_state, :rollback_on_disable, :maintenance_schedules, :use_off_peak_window) SENSITIVE = [] include Aws::Structure end |
#rollback_on_disable ⇒ String
When disabling Auto-Tune, specify NO_ROLLBACK
to retain all prior
Auto-Tune settings or DEFAULT_ROLLBACK
to revert to the OpenSearch
Service defaults. If you specify DEFAULT_ROLLBACK
, you must
include a MaintenanceSchedule
in the request. Otherwise,
OpenSearch Service is unable to perform the rollback.
801 802 803 804 805 806 807 808 |
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 801 class AutoTuneOptions < Struct.new( :desired_state, :rollback_on_disable, :maintenance_schedules, :use_off_peak_window) SENSITIVE = [] include Aws::Structure end |
#use_off_peak_window ⇒ Boolean
Whether to use the domain's off-peak window to deploy configuration changes on the domain rather than a maintenance schedule.
801 802 803 804 805 806 807 808 |
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 801 class AutoTuneOptions < Struct.new( :desired_state, :rollback_on_disable, :maintenance_schedules, :use_off_peak_window) SENSITIVE = [] include Aws::Structure end |