CustomFieldArgs

data class CustomFieldArgs(val name: Output<String>? = null, val value: Output<String>? = null) : ConvertibleToJava<CustomFieldArgs>

Custom fields. These can be used to create a counter with arbitrary field/value pairs. See: go/rpcsp-custom-fields.

Constructors

Link copied to clipboard
fun CustomFieldArgs(name: Output<String>? = null, value: Output<String>? = null)

Functions

Link copied to clipboard
open override fun toJava(): CustomFieldArgs

Properties

Link copied to clipboard
val name: Output<String>? = null

Name is the field name.

Link copied to clipboard
val value: Output<String>? = null

Value is the field value. It is important that in contrast to the CounterOptions.field, the value here is a constant that is not derived from the IAMContext.