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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-elasticsearchservice/lib/aws-sdk-elasticsearchservice/types.rb

Overview

Specifies maintenance schedule duration: duration value and duration unit. See the Developer Guide for more information.

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.

Returns:

  • (String)


2043
2044
2045
2046
2047
2048
# File 'gems/aws-sdk-elasticsearchservice/lib/aws-sdk-elasticsearchservice/types.rb', line 2043

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.

Returns:

  • (Integer)


2043
2044
2045
2046
2047
2048
# File 'gems/aws-sdk-elasticsearchservice/lib/aws-sdk-elasticsearchservice/types.rb', line 2043

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