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

com.pulumi.aws.sagemaker.kotlin.outputs.FeatureGroupFeatureDefinition.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: 6.57.0.0
Show newest version
@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