describeMaintenanceStartTime
inline suspend fun StorageGatewayClient.describeMaintenanceStartTime(crossinline block: DescribeMaintenanceStartTimeRequest.Builder.() -> Unit): DescribeMaintenanceStartTimeResponse
Returns your gateway's weekly maintenance start time including the day and time of the week. Note that values are in terms of 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
}