updateMaintenanceStartTime

Updates a gateway's weekly maintenance start time information, including day and time of the week. The maintenance time is the time in your gateway's time zone.

Samples


fun main() { 
   //sampleStart 
   // Updates a gateway s weekly maintenance start time information, including day and time of the week.
// The maintenance time is in your gateway s time zone.
val resp = storageGatewayClient.updateMaintenanceStartTime {
    gatewayArn = "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B"
    hourOfDay = 0
    minuteOfHour = 30
    dayOfWeek = 2
} 
   //sampleEnd
}