Module Values.PutMaintenanceStartTimeInputSource

Set the maintenance start time for a gateway.

Sourcetype nonrec t = {
  1. gatewayArn : GatewayArn.t;
    (*

    The Amazon Resource Name (ARN) for the gateway, used to specify its maintenance start time.

    *)
  2. hourOfDay : HourOfDay.t;
    (*

    The hour of the day to start maintenance on a gateway.

    *)
  3. minuteOfHour : MinuteOfHour.t;
    (*

    The minute of the hour to start maintenance on a gateway.

    *)
  4. dayOfWeek : DayOfWeek.t option;
    (*

    The day of the week to start maintenance on a gateway.

    *)
  5. dayOfMonth : DayOfMonth.t option;
    (*

    The day of the month start maintenance on a gateway. Valid values range from Sunday to Saturday.

    *)
}
Sourceval context_ : string
Sourceval make : ?dayOfWeek:??? -> ?dayOfMonth:??? -> gatewayArn:GatewayArn.t -> hourOfDay:HourOfDay.t -> minuteOfHour:MinuteOfHour.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of HourOfDay.t | `String of GatewayArn.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t