All files / src maintenance-window-start-time.ts

100% Statements 26/26
100% Branches 0/0
100% Functions 0/0
100% Lines 26/26

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 261x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x
/*
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
import { TimeZone } from 'aws-cdk-lib';
import { DayOfWeek } from './day-of-week';
 
/**
 * Start time of the weekly, 2-hours time window to apply pending updates or patches to the broker.
 */
export interface MaintenanceWindowStartTime {
  /**
   * The day of the week
   */
  readonly dayOfWeek: DayOfWeek;
 
  /**
   * The time, in 24-hour format.
   */
  readonly timeOfDay: string;
 
  /**
   * The time zone.
   */
  readonly timeZone: TimeZone;
}