userDefinedContext

@JvmName(name = "qcponyovhuktofds")
suspend fun userDefinedContext(value: Output<Map<String, String>>)
@JvmName(name = "natknycpktpuqajh")
suspend fun userDefinedContext(value: Map<String, String>?)

Parameters

value

User-defined context as a set of key/value pairs, which will be sent as function invocation context together with batched arguments in the requests to the remote service. The total number of bytes of keys and values must be less than 8KB. An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.


@JvmName(name = "ygyonbdyqslguuib")
fun userDefinedContext(vararg values: Pair<String, String>)

Parameters

values

User-defined context as a set of key/value pairs, which will be sent as function invocation context together with batched arguments in the requests to the remote service. The total number of bytes of keys and values must be less than 8KB. An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.