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

com.pulumi.awsnative.sagemaker.kotlin.inputs.ModelBiasJobDefinitionMonitoringGroundTruthS3InputArgs.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.sagemaker.kotlin.inputs

import com.pulumi.awsnative.sagemaker.inputs.ModelBiasJobDefinitionMonitoringGroundTruthS3InputArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 * Ground truth input provided in S3
 * @property s3Uri A URI that identifies the Amazon S3 storage location where Amazon SageMaker saves the results of a monitoring job.
 */
public data class ModelBiasJobDefinitionMonitoringGroundTruthS3InputArgs(
    public val s3Uri: Output,
) :
    ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.sagemaker.inputs.ModelBiasJobDefinitionMonitoringGroundTruthS3InputArgs =
        com.pulumi.awsnative.sagemaker.inputs.ModelBiasJobDefinitionMonitoringGroundTruthS3InputArgs.builder()
            .s3Uri(s3Uri.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [ModelBiasJobDefinitionMonitoringGroundTruthS3InputArgs].
 */
@PulumiTagMarker
public class ModelBiasJobDefinitionMonitoringGroundTruthS3InputArgsBuilder internal constructor() {
    private var s3Uri: Output? = null

    /**
     * @param value A URI that identifies the Amazon S3 storage location where Amazon SageMaker saves the results of a monitoring job.
     */
    @JvmName("jqohayhcdktefbqk")
    public suspend fun s3Uri(`value`: Output) {
        this.s3Uri = value
    }

    /**
     * @param value A URI that identifies the Amazon S3 storage location where Amazon SageMaker saves the results of a monitoring job.
     */
    @JvmName("xlqqqecprmapwatc")
    public suspend fun s3Uri(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.s3Uri = mapped
    }

    internal fun build(): ModelBiasJobDefinitionMonitoringGroundTruthS3InputArgs =
        ModelBiasJobDefinitionMonitoringGroundTruthS3InputArgs(
            s3Uri = s3Uri ?: throw PulumiNullFieldException("s3Uri"),
        )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy