WindowStartTime

class aws_cdk.aws_opensearchservice.WindowStartTime(*, hours, minutes)

Bases: object

Parameters:
  • hours (Union[int, float]) – 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. Default: - 22

  • minutes (Union[int, float]) – The start minute of the window, in UTC. Default: - 0

ExampleMetadata:

infused

Example:

domain = Domain(self, "Domain",
    version=EngineVersion.OPENSEARCH_1_3,
    off_peak_window_enabled=True,  # can be omitted if offPeakWindowStart is set
    off_peak_window_start=WindowStartTime(
        hours=20,
        minutes=0
    )
)

Attributes

hours

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.

Default:
  • 22

minutes

The start minute of the window, in UTC.

Default:
  • 0