commonMain.aws.sdk.kotlin.services.autoscaling.model.MetricDimension.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of autoscaling-jvm Show documentation
Show all versions of autoscaling-jvm Show documentation
The AWS SDK for Kotlin client for Auto Scaling
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.autoscaling.model
import aws.smithy.kotlin.runtime.SdkDsl
/**
* Describes the dimension of a metric.
*/
public class MetricDimension private constructor(builder: Builder) {
/**
* The name of the dimension.
*/
public val name: kotlin.String? = builder.name
/**
* The value of the dimension.
*/
public val value: kotlin.String? = builder.value
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.autoscaling.model.MetricDimension = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("MetricDimension(")
append("name=$name,")
append("value=$value")
append(")")
}
override fun hashCode(): kotlin.Int {
var result = name?.hashCode() ?: 0
result = 31 * result + (value?.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 MetricDimension
if (name != other.name) return false
if (value != other.value) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.autoscaling.model.MetricDimension = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The name of the dimension.
*/
public var name: kotlin.String? = null
/**
* The value of the dimension.
*/
public var value: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.autoscaling.model.MetricDimension) : this() {
this.name = x.name
this.value = x.value
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.autoscaling.model.MetricDimension = MetricDimension(this)
internal fun correctErrors(): Builder {
return this
}
}
}