commonMain.aws.sdk.kotlin.services.cleanroomsml.model.StartAudienceGenerationJobResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cleanroomsml-jvm Show documentation
Show all versions of cleanroomsml-jvm Show documentation
The AWS SDK for Kotlin client for CleanRoomsML
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.cleanroomsml.model
import aws.smithy.kotlin.runtime.SdkDsl
public class StartAudienceGenerationJobResponse private constructor(builder: Builder) {
/**
* The Amazon Resource Name (ARN) of the audience generation job.
*/
public val audienceGenerationJobArn: kotlin.String = requireNotNull(builder.audienceGenerationJobArn) { "A non-null value must be provided for audienceGenerationJobArn" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.cleanroomsml.model.StartAudienceGenerationJobResponse = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("StartAudienceGenerationJobResponse(")
append("audienceGenerationJobArn=$audienceGenerationJobArn")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = audienceGenerationJobArn.hashCode()
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 StartAudienceGenerationJobResponse
if (audienceGenerationJobArn != other.audienceGenerationJobArn) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.cleanroomsml.model.StartAudienceGenerationJobResponse = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The Amazon Resource Name (ARN) of the audience generation job.
*/
public var audienceGenerationJobArn: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.cleanroomsml.model.StartAudienceGenerationJobResponse) : this() {
this.audienceGenerationJobArn = x.audienceGenerationJobArn
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.cleanroomsml.model.StartAudienceGenerationJobResponse = StartAudienceGenerationJobResponse(this)
internal fun correctErrors(): Builder {
if (audienceGenerationJobArn == null) audienceGenerationJobArn = ""
return this
}
}
}