Class: Aws::ElasticsearchService::Types::Duration
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticsearchService::Types::Duration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticsearchservice/types.rb
Overview
Specifies maintenance schedule duration: duration value and duration unit. See the [Developer Guide] for more information.
[1]: docs.aws.amazon.com/elasticsearch-service/latest/developerguide/auto-tune.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#unit ⇒ String
Specifies the unit of a maintenance schedule duration.
-
#value ⇒ Integer
Integer to specify the value of a maintenance schedule duration.
Instance Attribute Details
#unit ⇒ String
Specifies the unit of a maintenance schedule duration. Valid value is HOURS. See the [Developer Guide] for more information.
[1]: docs.aws.amazon.com/elasticsearch-service/latest/developerguide/auto-tune.html
1896 1897 1898 1899 1900 1901 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 1896 class Duration < Struct.new( :value, :unit) SENSITIVE = [] include Aws::Structure end |
#value ⇒ Integer
Integer to specify the value of a maintenance schedule duration. See the [Developer Guide] for more information.
[1]: docs.aws.amazon.com/elasticsearch-service/latest/developerguide/auto-tune.html
1896 1897 1898 1899 1900 1901 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 1896 class Duration < Struct.new( :value, :unit) SENSITIVE = [] include Aws::Structure end |