includedCookieNames

@JvmName(name = "lbummddgligexegq")
suspend fun includedCookieNames(value: Output<List<String>>)
@JvmName(name = "jfrscmtaaqbufibs")
suspend fun includedCookieNames(value: List<String>?)

Parameters

value

Names of Cookies to include in cache keys. The cookie name and cookie value of each cookie named will be used as part of the cache key. Cookie names:

  • must be valid RFC 6265 "cookie-name" tokens

  • are case sensitive

  • cannot start with "Edge-Cache-" (case insensitive) Note that specifying several cookies, and/or cookies that have a large range of values (e.g., per-user) will dramatically impact the cache hit rate, and may result in a higher eviction rate and reduced performance. You may specify up to three cookie names.


@JvmName(name = "gdhivxkkcppbhjip")
suspend fun includedCookieNames(vararg values: Output<String>)


@JvmName(name = "uvcowtubxtslmahf")
suspend fun includedCookieNames(values: List<Output<String>>)
@JvmName(name = "yuftnetvohhwxhop")
suspend fun includedCookieNames(vararg values: String)

Parameters

values

Names of Cookies to include in cache keys. The cookie name and cookie value of each cookie named will be used as part of the cache key. Cookie names:

  • must be valid RFC 6265 "cookie-name" tokens

  • are case sensitive

  • cannot start with "Edge-Cache-" (case insensitive) Note that specifying several cookies, and/or cookies that have a large range of values (e.g., per-user) will dramatically impact the cache hit rate, and may result in a higher eviction rate and reduced performance. You may specify up to three cookie names.