Values.PutMaintenanceStartTimeInputSourceSet the maintenance start time for a gateway.
type nonrec t = {gatewayArn : GatewayArn.t;The Amazon Resource Name (ARN) for the gateway, used to specify its maintenance start time.
*)hourOfDay : HourOfDay.t;The hour of the day to start maintenance on a gateway.
*)minuteOfHour : MinuteOfHour.t;The minute of the hour to start maintenance on a gateway.
*)dayOfWeek : DayOfWeek.t option;The day of the week to start maintenance on a gateway.
*)dayOfMonth : DayOfMonth.t option;The day of the month start maintenance on a gateway. Valid values range from Sunday to Saturday.
*)}val make :
?dayOfWeek:??? ->
?dayOfMonth:??? ->
gatewayArn:GatewayArn.t ->
hourOfDay:HourOfDay.t ->
minuteOfHour:MinuteOfHour.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `Integer of HourOfDay.t | `String of GatewayArn.t ]) list ]