
com.pulumi.awsnative.appsync.kotlin.outputs.FunctionConfigurationLambdaConflictHandlerConfig.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.appsync.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* The LambdaConflictHandlerConfig when configuring LAMBDA as the Conflict Handler.
* @property lambdaConflictHandlerArn The Amazon Resource Name (ARN) for the Lambda function to use as the Conflict Handler.
*/
public data class FunctionConfigurationLambdaConflictHandlerConfig(
public val lambdaConflictHandlerArn: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.appsync.outputs.FunctionConfigurationLambdaConflictHandlerConfig): FunctionConfigurationLambdaConflictHandlerConfig =
FunctionConfigurationLambdaConflictHandlerConfig(
lambdaConflictHandlerArn = javaType.lambdaConflictHandlerArn().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy