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

com.pulumi.awsnative.cleanroomsml.kotlin.outputs.TrainingDatasetDataset.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 1.11.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.cleanroomsml.kotlin.outputs

import com.pulumi.awsnative.cleanroomsml.kotlin.enums.TrainingDatasetDatasetType
import kotlin.Suppress

/**
 *
 * @property inputConfig A DatasetInputConfig object that defines the data source and schema mapping.
 * @property type What type of information is found in the dataset.
 */
public data class TrainingDatasetDataset(
    public val inputConfig: TrainingDatasetDatasetInputConfig,
    public val type: TrainingDatasetDatasetType,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.cleanroomsml.outputs.TrainingDatasetDataset): TrainingDatasetDataset = TrainingDatasetDataset(
            inputConfig = javaType.inputConfig().let({ args0 ->
                com.pulumi.awsnative.cleanroomsml.kotlin.outputs.TrainingDatasetDatasetInputConfig.Companion.toKotlin(args0)
            }),
            type = javaType.type().let({ args0 ->
                com.pulumi.awsnative.cleanroomsml.kotlin.enums.TrainingDatasetDatasetType.Companion.toKotlin(args0)
            }),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy