![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.sagemaker.kotlin.outputs.PipelineS3Location.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.sagemaker.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property bucket The name of the S3 bucket where the PipelineDefinition file is stored.
* @property eTag The Amazon S3 ETag (a file checksum) of the PipelineDefinition file. If you don't specify a value, SageMaker skips ETag validation of your PipelineDefinition file.
* @property key The file name of the PipelineDefinition file (Amazon S3 object name).
* @property version For versioning-enabled buckets, a specific version of the PipelineDefinition file.
*/
public data class PipelineS3Location(
public val bucket: String,
public val eTag: String? = null,
public val key: String,
public val version: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.sagemaker.outputs.PipelineS3Location): PipelineS3Location = PipelineS3Location(
bucket = javaType.bucket(),
eTag = javaType.eTag().map({ args0 -> args0 }).orElse(null),
key = javaType.key(),
version = javaType.version().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy