
aws.sdk.kotlin.services.devopsguru.model.EndTimeRange.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.devopsguru.model
import aws.smithy.kotlin.runtime.time.Instant
/**
* A range of time that specifies when anomalous behavior in an anomaly or insight
* ended.
*/
class EndTimeRange private constructor(builder: Builder) {
/**
* The earliest end time in the time range.
*/
val fromTime: aws.smithy.kotlin.runtime.time.Instant? = builder.fromTime
/**
* The latest end time in the time range.
*/
val toTime: aws.smithy.kotlin.runtime.time.Instant? = builder.toTime
companion object {
operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.devopsguru.model.EndTimeRange = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("EndTimeRange(")
append("fromTime=$fromTime,")
append("toTime=$toTime)")
}
override fun hashCode(): kotlin.Int {
var result = fromTime?.hashCode() ?: 0
result = 31 * result + (toTime?.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 EndTimeRange
if (fromTime != other.fromTime) return false
if (toTime != other.toTime) return false
return true
}
inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.devopsguru.model.EndTimeRange = Builder(this).apply(block).build()
class Builder {
/**
* The earliest end time in the time range.
*/
var fromTime: aws.smithy.kotlin.runtime.time.Instant? = null
/**
* The latest end time in the time range.
*/
var toTime: aws.smithy.kotlin.runtime.time.Instant? = null
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.devopsguru.model.EndTimeRange) : this() {
this.fromTime = x.fromTime
this.toTime = x.toTime
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.devopsguru.model.EndTimeRange = EndTimeRange(this)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy