![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.sagemaker.kotlin.inputs.MonitoringScheduleStatisticsResourceArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.sagemaker.kotlin.inputs
import com.pulumi.awsnative.sagemaker.inputs.MonitoringScheduleStatisticsResourceArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* The baseline statistics resource for a monitoring job.
* @property s3Uri The Amazon S3 URI for the baseline statistics file in Amazon S3 that the current monitoring job should be validated against.
*/
public data class MonitoringScheduleStatisticsResourceArgs(
public val s3Uri: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.sagemaker.inputs.MonitoringScheduleStatisticsResourceArgs =
com.pulumi.awsnative.sagemaker.inputs.MonitoringScheduleStatisticsResourceArgs.builder()
.s3Uri(s3Uri?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [MonitoringScheduleStatisticsResourceArgs].
*/
@PulumiTagMarker
public class MonitoringScheduleStatisticsResourceArgsBuilder internal constructor() {
private var s3Uri: Output? = null
/**
* @param value The Amazon S3 URI for the baseline statistics file in Amazon S3 that the current monitoring job should be validated against.
*/
@JvmName("sojsyxigkcduirje")
public suspend fun s3Uri(`value`: Output) {
this.s3Uri = value
}
/**
* @param value The Amazon S3 URI for the baseline statistics file in Amazon S3 that the current monitoring job should be validated against.
*/
@JvmName("smkadjrvtauncxfh")
public suspend fun s3Uri(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.s3Uri = mapped
}
internal fun build(): MonitoringScheduleStatisticsResourceArgs =
MonitoringScheduleStatisticsResourceArgs(
s3Uri = s3Uri,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy