![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.sagemaker.kotlin.outputs.GetModelQualityJobDefinitionResult.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-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.awsnative.sagemaker.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property creationTime The time at which the job definition was created.
* @property jobDefinitionArn The Amazon Resource Name (ARN) of job definition.
*/
public data class GetModelQualityJobDefinitionResult(
public val creationTime: String? = null,
public val jobDefinitionArn: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.sagemaker.outputs.GetModelQualityJobDefinitionResult): GetModelQualityJobDefinitionResult = GetModelQualityJobDefinitionResult(
creationTime = javaType.creationTime().map({ args0 -> args0 }).orElse(null),
jobDefinitionArn = javaType.jobDefinitionArn().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy