KeyValueArgs

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

A product label represented as a key-value pair.

Constructors

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

Functions

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

Properties

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

The key of the label attached to the product. Cannot be empty and cannot exceed 128 bytes.

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

The value of the label attached to the product. Cannot be empty and cannot exceed 128 bytes.