![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.entityresolution.kotlin.outputs.IdMappingWorkflowOutputSource.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.entityresolution.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property kmsArn Customer AWS KMS ARN for encryption at rest. If not provided, system will use an AWS Entity Resolution managed KMS key.
* @property outputS3Path The S3 path to which Entity Resolution will write the output table
*/
public data class IdMappingWorkflowOutputSource(
public val kmsArn: String? = null,
public val outputS3Path: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.entityresolution.outputs.IdMappingWorkflowOutputSource): IdMappingWorkflowOutputSource = IdMappingWorkflowOutputSource(
kmsArn = javaType.kmsArn().map({ args0 -> args0 }).orElse(null),
outputS3Path = javaType.outputS3Path(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy