All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.awsnative.entityresolution.kotlin.outputs.MatchingWorkflowOutputAttribute.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.entityresolution.kotlin.outputs

import kotlin.Boolean
import kotlin.String
import kotlin.Suppress

/**
 *
 * @property hashed Enables the ability to hash the column values in the output.
 * @property name A name of a column to be written to the output. This must be an `InputField` name in the schema mapping.
 */
public data class MatchingWorkflowOutputAttribute(
    public val hashed: Boolean? = null,
    public val name: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.entityresolution.outputs.MatchingWorkflowOutputAttribute): MatchingWorkflowOutputAttribute = MatchingWorkflowOutputAttribute(
            hashed = javaType.hashed().map({ args0 -> args0 }).orElse(null),
            name = javaType.name(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy