com.pulumi.aws.sagemaker.kotlin.outputs.FeatureGroupFeatureDefinition.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-kotlin Show documentation
Show all versions of pulumi-aws-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.sagemaker.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property collectionConfig
* @property collectionType
* @property featureName The name of a feature. `feature_name` cannot be any of the following: `is_deleted`, `write_time`, `api_invocation_time`.
* @property featureType The value type of a feature. Valid values are `Integral`, `Fractional`, or `String`.
*/
public data class FeatureGroupFeatureDefinition(
public val collectionConfig: FeatureGroupFeatureDefinitionCollectionConfig? = null,
public val collectionType: String? = null,
public val featureName: String? = null,
public val featureType: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.aws.sagemaker.outputs.FeatureGroupFeatureDefinition): FeatureGroupFeatureDefinition = FeatureGroupFeatureDefinition(
collectionConfig = javaType.collectionConfig().map({ args0 ->
args0.let({ args0 ->
com.pulumi.aws.sagemaker.kotlin.outputs.FeatureGroupFeatureDefinitionCollectionConfig.Companion.toKotlin(args0)
})
}).orElse(null),
collectionType = javaType.collectionType().map({ args0 -> args0 }).orElse(null),
featureName = javaType.featureName().map({ args0 -> args0 }).orElse(null),
featureType = javaType.featureType().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy