
commonMain.aws.sdk.kotlin.services.comprehend.model.DatasetDocumentClassifierInputDataConfig.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.comprehend.model
/**
* Describes the dataset input data configuration for a document classifier model.
*
* For more information on how the input file is formatted, see [Preparing training data](https://docs.aws.amazon.com/comprehend/latest/dg/prep-classifier-data.html) in the Comprehend Developer Guide.
*/
public class DatasetDocumentClassifierInputDataConfig private constructor(builder: Builder) {
/**
* Indicates the delimiter used to separate each label for training a multi-label classifier. The default delimiter between labels is a pipe (|). You can use a different character as a delimiter (if it's an allowed character) by specifying it under Delimiter for labels. If the training documents use a delimiter other than the default or the delimiter you specify, the labels on that line will be combined to make a single unique label, such as LABELLABELLABEL.
*/
public val labelDelimiter: kotlin.String? = builder.labelDelimiter
/**
* The Amazon S3 URI for the input data. The S3 bucket must be in the same Region as the API endpoint that you are calling. The URI can point to a single input file or it can provide the prefix for a collection of input files.
*
* For example, if you use the URI `S3://bucketName/prefix`, if the prefix is a single file, Amazon Comprehend uses that file as input. If more than one file begins with the prefix, Amazon Comprehend uses all of them as input.
*
* This parameter is required if you set `DataFormat` to `COMPREHEND_CSV`.
*/
public val s3Uri: kotlin.String? = builder.s3Uri
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.comprehend.model.DatasetDocumentClassifierInputDataConfig = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("DatasetDocumentClassifierInputDataConfig(")
append("labelDelimiter=$labelDelimiter,")
append("s3Uri=$s3Uri")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = labelDelimiter?.hashCode() ?: 0
result = 31 * result + (s3Uri?.hashCode() ?: 0)
return result
}
override fun equals(other: kotlin.Any?): kotlin.Boolean {
if (this === other) return true
if (other == null || this::class != other::class) return false
other as DatasetDocumentClassifierInputDataConfig
if (labelDelimiter != other.labelDelimiter) return false
if (s3Uri != other.s3Uri) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.comprehend.model.DatasetDocumentClassifierInputDataConfig = Builder(this).apply(block).build()
public class Builder {
/**
* Indicates the delimiter used to separate each label for training a multi-label classifier. The default delimiter between labels is a pipe (|). You can use a different character as a delimiter (if it's an allowed character) by specifying it under Delimiter for labels. If the training documents use a delimiter other than the default or the delimiter you specify, the labels on that line will be combined to make a single unique label, such as LABELLABELLABEL.
*/
public var labelDelimiter: kotlin.String? = null
/**
* The Amazon S3 URI for the input data. The S3 bucket must be in the same Region as the API endpoint that you are calling. The URI can point to a single input file or it can provide the prefix for a collection of input files.
*
* For example, if you use the URI `S3://bucketName/prefix`, if the prefix is a single file, Amazon Comprehend uses that file as input. If more than one file begins with the prefix, Amazon Comprehend uses all of them as input.
*
* This parameter is required if you set `DataFormat` to `COMPREHEND_CSV`.
*/
public var s3Uri: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.comprehend.model.DatasetDocumentClassifierInputDataConfig) : this() {
this.labelDelimiter = x.labelDelimiter
this.s3Uri = x.s3Uri
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.comprehend.model.DatasetDocumentClassifierInputDataConfig = DatasetDocumentClassifierInputDataConfig(this)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy