AttributeArgs

data class AttributeArgs(val attributeDefinitionId: Output<String>? = null, val values: Output<List<String>>) : ConvertibleToJava<AttributeArgs>

An attribute value for a Consent or User data mapping. Each Attribute must have a corresponding AttributeDefinition in the consent store that defines the default and allowed values.

Constructors

Link copied to clipboard
fun AttributeArgs(attributeDefinitionId: Output<String>? = null, values: Output<List<String>>)

Functions

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

Properties

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

Indicates the name of an attribute defined in the consent store.

Link copied to clipboard
val values: Output<List<String>>

The value of the attribute. Must be an acceptable value as defined in the consent store. For example, if the consent store defines "data type" with acceptable values "questionnaire" and "step-count", when the attribute name is data type, this field must contain one of those values.