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.
4121 4122 4123 4124 4125 4126 4127 4128 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 4121 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.
4121 4122 4123 4124 4125 4126 4127 4128 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 4121 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.
4121 4122 4123 4124 4125 4126 4127 4128 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 4121 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.
4121 4122 4123 4124 4125 4126 4127 4128 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 4121 class ScheduledAutoTuneDetails < Struct.new( :date, :action_type, :action, :severity) SENSITIVE = [] include Aws::Structure end |