
commonMain.aws.sdk.kotlin.services.emr.model.MetricDimension.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.emr.model
/**
* A CloudWatch dimension, which is specified using a `Key` (known as a `Name` in CloudWatch), `Value` pair. By default, Amazon EMR uses one dimension whose `Key` is `JobFlowID` and `Value` is a variable representing the cluster ID, which is `${emr.clusterId}`. This enables the rule to bootstrap when the cluster ID becomes available.
*/
public class MetricDimension private constructor(builder: Builder) {
/**
* The dimension name.
*/
public val key: kotlin.String? = builder.key
/**
* The dimension value.
*/
public val value: kotlin.String? = builder.value
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.emr.model.MetricDimension = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("MetricDimension(")
append("key=$key,")
append("value=$value)")
}
override fun hashCode(): kotlin.Int {
var result = key?.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 (key != other.key) return false
if (value != other.value) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.emr.model.MetricDimension = Builder(this).apply(block).build()
public class Builder {
/**
* The dimension name.
*/
public var key: kotlin.String? = null
/**
* The dimension value.
*/
public var value: kotlin.String? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.emr.model.MetricDimension) : this() {
this.key = x.key
this.value = x.value
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.emr.model.MetricDimension = MetricDimension(this)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy