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

com.pulumi.awsnative.databrew.kotlin.outputs.RecipeSecondaryInput.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.databrew.kotlin.outputs

import kotlin.Suppress

/**
 * Secondary input
 * @property dataCatalogInputDefinition
 * @property s3InputDefinition
 */
public data class RecipeSecondaryInput(
    public val dataCatalogInputDefinition: RecipeDataCatalogInputDefinition? = null,
    public val s3InputDefinition: RecipeS3Location? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.databrew.outputs.RecipeSecondaryInput): RecipeSecondaryInput = RecipeSecondaryInput(
            dataCatalogInputDefinition = javaType.dataCatalogInputDefinition().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.awsnative.databrew.kotlin.outputs.RecipeDataCatalogInputDefinition.Companion.toKotlin(args0)
                })
            }).orElse(null),
            s3InputDefinition = javaType.s3InputDefinition().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.awsnative.databrew.kotlin.outputs.RecipeS3Location.Companion.toKotlin(args0)
                })
            }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy