commonMain.aws.sdk.kotlin.services.chimesdkmediapipelines.model.GetSpeakerSearchTaskRequest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chimesdkmediapipelines-jvm Show documentation
Show all versions of chimesdkmediapipelines-jvm Show documentation
The AWS SDK for Kotlin client for Chime SDK Media Pipelines
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.chimesdkmediapipelines.model
import aws.smithy.kotlin.runtime.SdkDsl
public class GetSpeakerSearchTaskRequest private constructor(builder: Builder) {
/**
* The unique identifier of the resource to be updated. Valid values include the ID and ARN of the media insights pipeline.
*/
public val identifier: kotlin.String? = builder.identifier
/**
* The ID of the speaker search task.
*/
public val speakerSearchTaskId: kotlin.String? = builder.speakerSearchTaskId
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.chimesdkmediapipelines.model.GetSpeakerSearchTaskRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("GetSpeakerSearchTaskRequest(")
append("identifier=$identifier,")
append("speakerSearchTaskId=$speakerSearchTaskId")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = identifier?.hashCode() ?: 0
result = 31 * result + (speakerSearchTaskId?.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 GetSpeakerSearchTaskRequest
if (identifier != other.identifier) return false
if (speakerSearchTaskId != other.speakerSearchTaskId) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.chimesdkmediapipelines.model.GetSpeakerSearchTaskRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The unique identifier of the resource to be updated. Valid values include the ID and ARN of the media insights pipeline.
*/
public var identifier: kotlin.String? = null
/**
* The ID of the speaker search task.
*/
public var speakerSearchTaskId: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.chimesdkmediapipelines.model.GetSpeakerSearchTaskRequest) : this() {
this.identifier = x.identifier
this.speakerSearchTaskId = x.speakerSearchTaskId
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.chimesdkmediapipelines.model.GetSpeakerSearchTaskRequest = GetSpeakerSearchTaskRequest(this)
internal fun correctErrors(): Builder {
return this
}
}
}