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

com.pulumi.awsnative.comprehend.kotlin.outputs.DocumentClassifierDocuments.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 1.24.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.comprehend.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property s3Uri The S3 URI location of the training documents specified in the S3Uri CSV file.
 * @property testS3Uri The S3 URI location of the test documents included in the TestS3Uri CSV file. This field is not required if you do not specify a test CSV file.
 */
public data class DocumentClassifierDocuments(
    public val s3Uri: String,
    public val testS3Uri: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.comprehend.outputs.DocumentClassifierDocuments): DocumentClassifierDocuments = DocumentClassifierDocuments(
            s3Uri = javaType.s3Uri(),
            testS3Uri = javaType.testS3Uri().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy