![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.comprehend.kotlin.outputs.DocumentClassifierDocuments.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-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.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