ServerlessCacheTimeouts

data class ServerlessCacheTimeouts(val create: String? = null, val delete: String? = null, val update: String? = null)

Constructors

Link copied to clipboard
constructor(create: String? = null, delete: String? = null, update: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val create: String? = null

A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).

Link copied to clipboard
val delete: String? = null

A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.

Link copied to clipboard
val update: String? = null

A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).