CxEntityTypeEntityArgs

data class CxEntityTypeEntityArgs(val synonyms: Output<List<String>>? = null, val value: Output<String>? = null) : ConvertibleToJava<CxEntityTypeEntityArgs>

Constructors

Link copied to clipboard
constructor(synonyms: Output<List<String>>? = null, value: Output<String>? = null)

Properties

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

A collection of value synonyms. For example, if the entity type is vegetable, and value is scallions, a synonym could be green onions. For KIND_LIST entity types: This collection must contain exactly one synonym equal to value.

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

The primary value associated with this entity entry. For example, if the entity type is vegetable, the value could be scallions. For KIND_MAP entity types: A canonical value to be used in place of synonyms. For KIND_LIST entity types: A string that can contain references to other entity types (with or without aliases).

Functions

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