commonMain.aws.sdk.kotlin.services.cleanroomsml.model.StartAudienceExportJobRequest.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 StartAudienceExportJobRequest private constructor(builder: Builder) {
/**
* The Amazon Resource Name (ARN) of the audience generation job that you want to export.
*/
public val audienceGenerationJobArn: kotlin.String? = builder.audienceGenerationJobArn
/**
* The size of the generated audience. Must match one of the sizes in the configured audience model.
*/
public val audienceSize: aws.sdk.kotlin.services.cleanroomsml.model.AudienceSize? = builder.audienceSize
/**
* The description of the audience export job.
*/
public val description: kotlin.String? = builder.description
/**
* The name of the audience export job.
*/
public val name: kotlin.String? = builder.name
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.cleanroomsml.model.StartAudienceExportJobRequest = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("StartAudienceExportJobRequest(")
append("audienceGenerationJobArn=$audienceGenerationJobArn,")
append("audienceSize=$audienceSize,")
append("description=$description,")
append("name=$name")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = audienceGenerationJobArn?.hashCode() ?: 0
result = 31 * result + (audienceSize?.hashCode() ?: 0)
result = 31 * result + (description?.hashCode() ?: 0)
result = 31 * result + (name?.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 StartAudienceExportJobRequest
if (audienceGenerationJobArn != other.audienceGenerationJobArn) return false
if (audienceSize != other.audienceSize) return false
if (description != other.description) return false
if (name != other.name) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.cleanroomsml.model.StartAudienceExportJobRequest = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The Amazon Resource Name (ARN) of the audience generation job that you want to export.
*/
public var audienceGenerationJobArn: kotlin.String? = null
/**
* The size of the generated audience. Must match one of the sizes in the configured audience model.
*/
public var audienceSize: aws.sdk.kotlin.services.cleanroomsml.model.AudienceSize? = null
/**
* The description of the audience export job.
*/
public var description: kotlin.String? = null
/**
* The name of the audience export job.
*/
public var name: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.cleanroomsml.model.StartAudienceExportJobRequest) : this() {
this.audienceGenerationJobArn = x.audienceGenerationJobArn
this.audienceSize = x.audienceSize
this.description = x.description
this.name = x.name
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.cleanroomsml.model.StartAudienceExportJobRequest = StartAudienceExportJobRequest(this)
/**
* construct an [aws.sdk.kotlin.services.cleanroomsml.model.AudienceSize] inside the given [block]
*/
public fun audienceSize(block: aws.sdk.kotlin.services.cleanroomsml.model.AudienceSize.Builder.() -> kotlin.Unit) {
this.audienceSize = aws.sdk.kotlin.services.cleanroomsml.model.AudienceSize.invoke(block)
}
internal fun correctErrors(): Builder {
return this
}
}
}