commonMain.aws.sdk.kotlin.services.polly.model.GetSpeechSynthesisTaskResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of polly-jvm Show documentation
Show all versions of polly-jvm Show documentation
The AWS SDK for Kotlin client for Polly
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.polly.model
import aws.smithy.kotlin.runtime.SdkDsl
public class GetSpeechSynthesisTaskResponse private constructor(builder: Builder) {
/**
* SynthesisTask object that provides information from the requested task, including output format, creation time, task status, and so on.
*/
public val synthesisTask: aws.sdk.kotlin.services.polly.model.SynthesisTask? = builder.synthesisTask
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.polly.model.GetSpeechSynthesisTaskResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetSpeechSynthesisTaskResponse(")
append("synthesisTask=$synthesisTask")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = synthesisTask?.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 GetSpeechSynthesisTaskResponse
if (synthesisTask != other.synthesisTask) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.polly.model.GetSpeechSynthesisTaskResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* SynthesisTask object that provides information from the requested task, including output format, creation time, task status, and so on.
*/
public var synthesisTask: aws.sdk.kotlin.services.polly.model.SynthesisTask? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.polly.model.GetSpeechSynthesisTaskResponse) : this() {
this.synthesisTask = x.synthesisTask
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.polly.model.GetSpeechSynthesisTaskResponse = GetSpeechSynthesisTaskResponse(this)
/**
* construct an [aws.sdk.kotlin.services.polly.model.SynthesisTask] inside the given [block]
*/
public fun synthesisTask(block: aws.sdk.kotlin.services.polly.model.SynthesisTask.Builder.() -> kotlin.Unit) {
this.synthesisTask = aws.sdk.kotlin.services.polly.model.SynthesisTask.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}