Class: Aws::OpenSearchService::Types::WindowStartTime

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-opensearchservice/types.rb

Overview

The desired start time for an [off-peak maintenance window].

[1]: docs.aws.amazon.com/opensearch-service/latest/APIReference/API_OffPeakWindow.html

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#hoursInteger

The start hour of the window in Coordinated Universal Time (UTC), using 24-hour time. For example, ‘17` refers to 5:00 P.M. UTC.

Returns:

  • (Integer)


7825
7826
7827
7828
7829
7830
# File 'lib/aws-sdk-opensearchservice/types.rb', line 7825

class WindowStartTime < Struct.new(
  :hours,
  :minutes)
  SENSITIVE = []
  include Aws::Structure
end

#minutesInteger

The start minute of the window, in UTC.

Returns:

  • (Integer)


7825
7826
7827
7828
7829
7830
# File 'lib/aws-sdk-opensearchservice/types.rb', line 7825

class WindowStartTime < Struct.new(
  :hours,
  :minutes)
  SENSITIVE = []
  include Aws::Structure
end