commonMain.aws.sdk.kotlin.services.cleanroomsml.model.MetricsConfigurationPolicy.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
/**
* Provides the configuration policy for metrics generation.
*/
public class MetricsConfigurationPolicy private constructor(builder: Builder) {
/**
* The noise level for the generated metrics.
*/
public val noiseLevel: aws.sdk.kotlin.services.cleanroomsml.model.NoiseLevelType = requireNotNull(builder.noiseLevel) { "A non-null value must be provided for noiseLevel" }
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.cleanroomsml.model.MetricsConfigurationPolicy = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("MetricsConfigurationPolicy(")
append("noiseLevel=$noiseLevel")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = noiseLevel.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 MetricsConfigurationPolicy
if (noiseLevel != other.noiseLevel) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.cleanroomsml.model.MetricsConfigurationPolicy = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The noise level for the generated metrics.
*/
public var noiseLevel: aws.sdk.kotlin.services.cleanroomsml.model.NoiseLevelType? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.cleanroomsml.model.MetricsConfigurationPolicy) : this() {
this.noiseLevel = x.noiseLevel
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.cleanroomsml.model.MetricsConfigurationPolicy = MetricsConfigurationPolicy(this)
internal fun correctErrors(): Builder {
if (noiseLevel == null) noiseLevel = NoiseLevelType.SdkUnknown("no value provided")
return this
}
}
}