describeMaintenanceStartTime
inline suspend fun StorageGatewayClient.describeMaintenanceStartTime(crossinline block: DescribeMaintenanceStartTimeRequest.Builder.() -> Unit): DescribeMaintenanceStartTimeResponse
Returns your gateway's maintenance window schedule information, with values for monthly or weekly cadence, specific day and time to begin maintenance, and which types of updates to apply. Time values returned are for the gateway's time zone.
Samples
fun main() {
//sampleStart
// Returns your gateway s weekly maintenance start time including the day and time of the week.
val resp = storageGatewayClient.describeMaintenanceStartTime {
gatewayArn = "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B"
}
//sampleEnd
}