com.pulumi.aws.sagemaker.kotlin.inputs.ModelContainerModelDataSourceArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-kotlin Show documentation
Show all versions of pulumi-aws-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.aws.sagemaker.kotlin.inputs
import com.pulumi.aws.sagemaker.inputs.ModelContainerModelDataSourceArgs.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 com.pulumi.kotlin.applySuspend
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property s3DataSources The S3 location of model data to deploy.
*/
public data class ModelContainerModelDataSourceArgs(
public val s3DataSources: Output>,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.aws.sagemaker.inputs.ModelContainerModelDataSourceArgs =
com.pulumi.aws.sagemaker.inputs.ModelContainerModelDataSourceArgs.builder()
.s3DataSources(
s3DataSources.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [ModelContainerModelDataSourceArgs].
*/
@PulumiTagMarker
public class ModelContainerModelDataSourceArgsBuilder internal constructor() {
private var s3DataSources: Output>? = null
/**
* @param value The S3 location of model data to deploy.
*/
@JvmName("ouxyjyihkejnxrol")
public suspend fun s3DataSources(`value`: Output>) {
this.s3DataSources = value
}
@JvmName("rpyhdayhhpqbqsbm")
public suspend fun s3DataSources(vararg values: Output) {
this.s3DataSources = Output.all(values.asList())
}
/**
* @param values The S3 location of model data to deploy.
*/
@JvmName("hkalucmoqsynmbma")
public suspend fun s3DataSources(values: List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy