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

com.pulumi.awsnative.sagemaker.kotlin.outputs.ModelCardTrainingMetric.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.sagemaker.kotlin.outputs

import kotlin.Double
import kotlin.String
import kotlin.Suppress

/**
 * training metric data.
 * @property name The name of the result from the SageMaker training job.
 * @property notes Any additional notes describing the result of the training job.
 * @property value The value of a result from the SageMaker training job.
 */
public data class ModelCardTrainingMetric(
    public val name: String,
    public val notes: String? = null,
    public val `value`: Double,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.sagemaker.outputs.ModelCardTrainingMetric): ModelCardTrainingMetric = ModelCardTrainingMetric(
            name = javaType.name(),
            notes = javaType.notes().map({ args0 -> args0 }).orElse(null),
            `value` = javaType.`value`(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy