aws.sdk.kotlin.services.transcribe.model.VocabularyInfo.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of transcribe Show documentation
Show all versions of transcribe Show documentation
Amazon Transcribe Service
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.transcribe.model
import aws.smithy.kotlin.runtime.time.Instant
/**
* Provides information about a custom vocabulary.
*/
class VocabularyInfo private constructor(builder: Builder) {
/**
* The language code of the vocabulary entries.
*/
val languageCode: aws.sdk.kotlin.services.transcribe.model.LanguageCode? = builder.languageCode
/**
* The date and time that the vocabulary was last modified.
*/
val lastModifiedTime: aws.smithy.kotlin.runtime.time.Instant? = builder.lastModifiedTime
/**
* The name of the vocabulary.
*/
val vocabularyName: kotlin.String? = builder.vocabularyName
/**
* The processing state of the vocabulary. If the state is READY you
* can use the vocabulary in a StartTranscriptionJob request.
*/
val vocabularyState: aws.sdk.kotlin.services.transcribe.model.VocabularyState? = builder.vocabularyState
companion object {
operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.transcribe.model.VocabularyInfo = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("VocabularyInfo(")
append("languageCode=$languageCode,")
append("lastModifiedTime=$lastModifiedTime,")
append("vocabularyName=$vocabularyName,")
append("vocabularyState=$vocabularyState)")
}
override fun hashCode(): kotlin.Int {
var result = languageCode?.hashCode() ?: 0
result = 31 * result + (lastModifiedTime?.hashCode() ?: 0)
result = 31 * result + (vocabularyName?.hashCode() ?: 0)
result = 31 * result + (vocabularyState?.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 VocabularyInfo
if (languageCode != other.languageCode) return false
if (lastModifiedTime != other.lastModifiedTime) return false
if (vocabularyName != other.vocabularyName) return false
if (vocabularyState != other.vocabularyState) return false
return true
}
inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.transcribe.model.VocabularyInfo = Builder(this).apply(block).build()
class Builder {
/**
* The language code of the vocabulary entries.
*/
var languageCode: aws.sdk.kotlin.services.transcribe.model.LanguageCode? = null
/**
* The date and time that the vocabulary was last modified.
*/
var lastModifiedTime: aws.smithy.kotlin.runtime.time.Instant? = null
/**
* The name of the vocabulary.
*/
var vocabularyName: kotlin.String? = null
/**
* The processing state of the vocabulary. If the state is READY you
* can use the vocabulary in a StartTranscriptionJob request.
*/
var vocabularyState: aws.sdk.kotlin.services.transcribe.model.VocabularyState? = null
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.transcribe.model.VocabularyInfo) : this() {
this.languageCode = x.languageCode
this.lastModifiedTime = x.lastModifiedTime
this.vocabularyName = x.vocabularyName
this.vocabularyState = x.vocabularyState
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.transcribe.model.VocabularyInfo = VocabularyInfo(this)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy