
com.pulumi.awsnative.sagemaker.kotlin.outputs.ModelBiasJobDefinitionModelBiasJobInput.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.sagemaker.kotlin.outputs
import kotlin.Suppress
/**
* The inputs for a monitoring job.
* @property batchTransformInput Input object for the batch transform job.
* @property endpointInput Input object for the endpoint
* @property groundTruthS3Input Location of ground truth labels to use in model bias job.
*/
public data class ModelBiasJobDefinitionModelBiasJobInput(
public val batchTransformInput: ModelBiasJobDefinitionBatchTransformInput? = null,
public val endpointInput: ModelBiasJobDefinitionEndpointInput? = null,
public val groundTruthS3Input: ModelBiasJobDefinitionMonitoringGroundTruthS3Input,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.sagemaker.outputs.ModelBiasJobDefinitionModelBiasJobInput): ModelBiasJobDefinitionModelBiasJobInput = ModelBiasJobDefinitionModelBiasJobInput(
batchTransformInput = javaType.batchTransformInput().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.sagemaker.kotlin.outputs.ModelBiasJobDefinitionBatchTransformInput.Companion.toKotlin(args0)
})
}).orElse(null),
endpointInput = javaType.endpointInput().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.sagemaker.kotlin.outputs.ModelBiasJobDefinitionEndpointInput.Companion.toKotlin(args0)
})
}).orElse(null),
groundTruthS3Input = javaType.groundTruthS3Input().let({ args0 ->
com.pulumi.awsnative.sagemaker.kotlin.outputs.ModelBiasJobDefinitionMonitoringGroundTruthS3Input.Companion.toKotlin(args0)
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy