Class: Aws::ElasticsearchService::Types::ScheduledAutoTuneDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticsearchService::Types::ScheduledAutoTuneDetails
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticsearchservice/types.rb
Overview
Specifies details of the scheduled Auto-Tune action. See the
- Developer Guide][1
-
for more information.
[1]: docs.aws.amazon.com/elasticsearch-service/latest/developerguide/auto-tune.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#action ⇒ String
Specifies Auto-Tune action description.
-
#action_type ⇒ String
Specifies Auto-Tune action type.
-
#date ⇒ Time
Specifies timestamp for the Auto-Tune action scheduled for the domain.
-
#severity ⇒ String
Specifies Auto-Tune action severity.
Instance Attribute Details
#action ⇒ String
Specifies Auto-Tune action description.
3757 3758 3759 3760 3761 3762 3763 3764 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 3757 class ScheduledAutoTuneDetails < Struct.new( :date, :action_type, :action, :severity) SENSITIVE = [] include Aws::Structure end |
#action_type ⇒ String
Specifies Auto-Tune action type. Valid values are JVM_HEAP_SIZE_TUNING and JVM_YOUNG_GEN_TUNING.
3757 3758 3759 3760 3761 3762 3763 3764 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 3757 class ScheduledAutoTuneDetails < Struct.new( :date, :action_type, :action, :severity) SENSITIVE = [] include Aws::Structure end |
#date ⇒ Time
Specifies timestamp for the Auto-Tune action scheduled for the domain.
3757 3758 3759 3760 3761 3762 3763 3764 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 3757 class ScheduledAutoTuneDetails < Struct.new( :date, :action_type, :action, :severity) SENSITIVE = [] include Aws::Structure end |
#severity ⇒ String
Specifies Auto-Tune action severity. Valid values are LOW, MEDIUM and HIGH.
3757 3758 3759 3760 3761 3762 3763 3764 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 3757 class ScheduledAutoTuneDetails < Struct.new( :date, :action_type, :action, :severity) SENSITIVE = [] include Aws::Structure end |