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>
A list of maintenance schedules during which Auto-Tune can deploy changes.
-
#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.
Instance Attribute Details
#desired_state ⇒ String
Whether Auto-Tune is enabled or disabled.
500 501 502 503 504 505 506 |
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 500 class AutoTuneOptions < Struct.new( :desired_state, :rollback_on_disable, :maintenance_schedules) SENSITIVE = [] include Aws::Structure end |
#maintenance_schedules ⇒ Array<Types::AutoTuneMaintenanceSchedule>
A list of maintenance schedules during which Auto-Tune can deploy changes.
500 501 502 503 504 505 506 |
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 500 class AutoTuneOptions < Struct.new( :desired_state, :rollback_on_disable, :maintenance_schedules) 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.
500 501 502 503 504 505 506 |
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 500 class AutoTuneOptions < Struct.new( :desired_state, :rollback_on_disable, :maintenance_schedules) SENSITIVE = [] include Aws::Structure end |