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

com.pulumi.awsnative.sagemaker.kotlin.outputs.ModelQualityJobDefinitionS3Output.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.sagemaker.kotlin.outputs

import com.pulumi.awsnative.sagemaker.kotlin.enums.ModelQualityJobDefinitionS3OutputS3UploadMode
import kotlin.String
import kotlin.Suppress

/**
 * Information about where and how to store the results of a monitoring job.
 * @property localPath The local path to the Amazon S3 storage location where Amazon SageMaker saves the results of a monitoring job. LocalPath is an absolute path for the output data.
 * @property s3UploadMode Whether to upload the results of the monitoring job continuously or after the job completes.
 * @property s3Uri A URI that identifies the Amazon S3 storage location where Amazon SageMaker saves the results of a monitoring job.
 */
public data class ModelQualityJobDefinitionS3Output(
    public val localPath: String,
    public val s3UploadMode: ModelQualityJobDefinitionS3OutputS3UploadMode? = null,
    public val s3Uri: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.sagemaker.outputs.ModelQualityJobDefinitionS3Output): ModelQualityJobDefinitionS3Output = ModelQualityJobDefinitionS3Output(
            localPath = javaType.localPath(),
            s3UploadMode = javaType.s3UploadMode().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.awsnative.sagemaker.kotlin.enums.ModelQualityJobDefinitionS3OutputS3UploadMode.Companion.toKotlin(args0)
                })
            }).orElse(null),
            s3Uri = javaType.s3Uri(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy