Class: Aws::OpenSearchService::Types::WindowStartTime
- Inherits:
-
Struct
- Object
- Struct
- Aws::OpenSearchService::Types::WindowStartTime
- 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
-
#hours ⇒ Integer
The start hour of the window in Coordinated Universal Time (UTC), using 24-hour time.
-
#minutes ⇒ Integer
The start minute of the window, in UTC.
Instance Attribute Details
#hours ⇒ Integer
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.
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 |
#minutes ⇒ Integer
The start minute of the window, in UTC.
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 |