Class: Aws::ElasticsearchService::Types::Duration

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#unitString

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

Returns:

  • (String)


1899
1900
1901
1902
1903
1904
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 1899

class Duration < Struct.new(
  :value,
  :unit)
  SENSITIVE = []
  include Aws::Structure
end

#valueInteger

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

Returns:

  • (Integer)


1899
1900
1901
1902
1903
1904
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 1899

class Duration < Struct.new(
  :value,
  :unit)
  SENSITIVE = []
  include Aws::Structure
end