![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.sagemaker.kotlin.enums.MonitoringScheduleEndpointInputS3InputMode.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.sagemaker.kotlin.enums
import com.pulumi.kotlin.ConvertibleToJava
import kotlin.Suppress
/**
* Whether the Pipe or File is used as the input mode for transfering data for the monitoring job. Pipe mode is recommended for large datasets. File mode is useful for small files that fit in memory. Defaults to File.
*/
public enum class MonitoringScheduleEndpointInputS3InputMode(
public val javaValue: com.pulumi.awsnative.sagemaker.enums.MonitoringScheduleEndpointInputS3InputMode,
) :
ConvertibleToJava {
Pipe(com.pulumi.awsnative.sagemaker.enums.MonitoringScheduleEndpointInputS3InputMode.Pipe),
File(com.pulumi.awsnative.sagemaker.enums.MonitoringScheduleEndpointInputS3InputMode.File),
;
override fun toJava(): com.pulumi.awsnative.sagemaker.enums.MonitoringScheduleEndpointInputS3InputMode = javaValue
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.sagemaker.enums.MonitoringScheduleEndpointInputS3InputMode): MonitoringScheduleEndpointInputS3InputMode =
MonitoringScheduleEndpointInputS3InputMode.values().first { it.javaValue == javaType }
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy