includedHeaderNames

@JvmName(name = "wtciqmnjddvrlmbw")
suspend fun includedHeaderNames(value: Output<List<String>>)
@JvmName(name = "sfkpixavjfqigttq")
suspend fun includedHeaderNames(value: List<String>?)

Parameters

value

Names of HTTP request headers to include in cache keys. The value of the header field will be used as part of the cache key.

  • Header names must be valid HTTP RFC 7230 header field values.

  • Header field names are case insensitive

  • To include the HTTP method, use ":method" Note that specifying several headers, and/or headers 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.


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


@JvmName(name = "yxdykrxfmaibjyis")
suspend fun includedHeaderNames(values: List<Output<String>>)
@JvmName(name = "vlympavliwddwxlt")
suspend fun includedHeaderNames(vararg values: String)

Parameters

values

Names of HTTP request headers to include in cache keys. The value of the header field will be used as part of the cache key.

  • Header names must be valid HTTP RFC 7230 header field values.

  • Header field names are case insensitive

  • To include the HTTP method, use ":method" Note that specifying several headers, and/or headers 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.