Class: Aws::ElasticsearchService::Types::AutoTune
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticsearchService::Types::AutoTune
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticsearchservice/types.rb
Overview
Specifies Auto-Tune type and Auto-Tune action details.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#auto_tune_details ⇒ Types::AutoTuneDetails
Specifies details of the Auto-Tune action.
-
#auto_tune_type ⇒ String
Specifies Auto-Tune type.
Instance Attribute Details
#auto_tune_details ⇒ Types::AutoTuneDetails
Specifies details of the Auto-Tune action. See the [Developer Guide] for more information.
[1]: docs.aws.amazon.com/elasticsearch-service/latest/developerguide/auto-tune.html
335 336 337 338 339 340 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 335 class AutoTune < Struct.new( :auto_tune_type, :auto_tune_details) SENSITIVE = [] include Aws::Structure end |