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

com.pulumi.awsnative.entityresolution.kotlin.outputs.MatchingWorkflowOutputSource.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
import kotlin.collections.List

/**
 *
 * @property applyNormalization Normalizes the attributes defined in the schema in the input data. For example, if an attribute has an `AttributeType` of `PHONE_NUMBER` , and the data in the input table is in a format of 1234567890, AWS Entity Resolution will normalize this field in the output to (123)-456-7890.
 * @property kmsArn Customer KMS ARN for encryption at rest. If not provided, system will use an AWS Entity Resolution managed KMS key.
 * @property output A list of `OutputAttribute` objects, each of which have the fields `Name` and `Hashed` . Each of these objects selects a column to be included in the output table, and whether the values of the column should be hashed.
 * @property outputS3Path The S3 path to which Entity Resolution will write the output table
 */
public data class MatchingWorkflowOutputSource(
    public val applyNormalization: Boolean? = null,
    public val kmsArn: String? = null,
    public val output: List,
    public val outputS3Path: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.entityresolution.outputs.MatchingWorkflowOutputSource): MatchingWorkflowOutputSource = MatchingWorkflowOutputSource(
            applyNormalization = javaType.applyNormalization().map({ args0 -> args0 }).orElse(null),
            kmsArn = javaType.kmsArn().map({ args0 -> args0 }).orElse(null),
            output = javaType.output().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.awsnative.entityresolution.kotlin.outputs.MatchingWorkflowOutputAttribute.Companion.toKotlin(args0)
                })
            }),
            outputS3Path = javaType.outputS3Path(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy