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)


2003
2004
2005
2006
2007
2008
# File 'gems/aws-sdk-elasticsearchservice/lib/aws-sdk-elasticsearchservice/types.rb', line 2003

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)


2003
2004
2005
2006
2007
2008
# File 'gems/aws-sdk-elasticsearchservice/lib/aws-sdk-elasticsearchservice/types.rb', line 2003

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