
commonMain.aws.sdk.kotlin.services.rekognition.model.RecognizeCelebritiesRequest.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.rekognition.model
public class RecognizeCelebritiesRequest private constructor(builder: Builder) {
/**
* The input image as base64-encoded bytes or an S3 object. If you use the AWS CLI to call Amazon Rekognition operations, passing base64-encoded image bytes is not supported.
*
* If you are using an AWS SDK to call Amazon Rekognition, you might not need to base64-encode image bytes passed using the `Bytes` field. For more information, see Images in the Amazon Rekognition developer guide.
*/
public val image: aws.sdk.kotlin.services.rekognition.model.Image? = builder.image
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.rekognition.model.RecognizeCelebritiesRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("RecognizeCelebritiesRequest(")
append("image=$image")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = image?.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 RecognizeCelebritiesRequest
if (image != other.image) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.rekognition.model.RecognizeCelebritiesRequest = Builder(this).apply(block).build()
public class Builder {
/**
* The input image as base64-encoded bytes or an S3 object. If you use the AWS CLI to call Amazon Rekognition operations, passing base64-encoded image bytes is not supported.
*
* If you are using an AWS SDK to call Amazon Rekognition, you might not need to base64-encode image bytes passed using the `Bytes` field. For more information, see Images in the Amazon Rekognition developer guide.
*/
public var image: aws.sdk.kotlin.services.rekognition.model.Image? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.rekognition.model.RecognizeCelebritiesRequest) : this() {
this.image = x.image
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.rekognition.model.RecognizeCelebritiesRequest = RecognizeCelebritiesRequest(this)
/**
* construct an [aws.sdk.kotlin.services.rekognition.model.Image] inside the given [block]
*/
public fun image(block: aws.sdk.kotlin.services.rekognition.model.Image.Builder.() -> kotlin.Unit) {
this.image = aws.sdk.kotlin.services.rekognition.model.Image.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy