
com.pulumi.awsnative.sagemaker.kotlin.outputs.ModelPackageMetricsSource.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.sagemaker.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* Represents a Metric Source Object.
* @property contentDigest The digest of the metric source.
* @property contentType The type of content stored in the metric source.
* @property s3Uri The Amazon S3 URI for the metric source.
*/
public data class ModelPackageMetricsSource(
public val contentDigest: String? = null,
public val contentType: String,
public val s3Uri: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.sagemaker.outputs.ModelPackageMetricsSource): ModelPackageMetricsSource = ModelPackageMetricsSource(
contentDigest = javaType.contentDigest().map({ args0 -> args0 }).orElse(null),
contentType = javaType.contentType(),
s3Uri = javaType.s3Uri(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy