commonMain.aws.sdk.kotlin.services.devopsguru.model.StartTimeRange.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of devopsguru-jvm Show documentation
Show all versions of devopsguru-jvm Show documentation
The AWS SDK for Kotlin client for DevOps Guru
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.devopsguru.model
import aws.smithy.kotlin.runtime.SdkDsl
import aws.smithy.kotlin.runtime.time.Instant
/**
* A time range used to specify when the behavior of an insight or anomaly started.
*/
public class StartTimeRange private constructor(builder: Builder) {
/**
* The start time of the time range.
*/
public val fromTime: aws.smithy.kotlin.runtime.time.Instant? = builder.fromTime
/**
* The end time of the time range.
*/
public val toTime: aws.smithy.kotlin.runtime.time.Instant? = builder.toTime
public companion object {
public operator fun invoke(block: Builder.() -> kotlin.Unit): aws.sdk.kotlin.services.devopsguru.model.StartTimeRange = Builder().apply(block).build()
}
override fun toString(): kotlin.String = buildString {
append("StartTimeRange(")
append("fromTime=$fromTime,")
append("toTime=$toTime")
append(")")
}
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 StartTimeRange
if (fromTime != other.fromTime) return false
if (toTime != other.toTime) return false
return true
}
public inline fun copy(block: Builder.() -> kotlin.Unit = {}): aws.sdk.kotlin.services.devopsguru.model.StartTimeRange = Builder(this).apply(block).build()
@SdkDsl
public class Builder {
/**
* The start time of the time range.
*/
public var fromTime: aws.smithy.kotlin.runtime.time.Instant? = null
/**
* The end time of the time range.
*/
public var toTime: aws.smithy.kotlin.runtime.time.Instant? = null
@PublishedApi
internal constructor()
@PublishedApi
internal constructor(x: aws.sdk.kotlin.services.devopsguru.model.StartTimeRange) : this() {
this.fromTime = x.fromTime
this.toTime = x.toTime
}
@PublishedApi
internal fun build(): aws.sdk.kotlin.services.devopsguru.model.StartTimeRange = StartTimeRange(this)
internal fun correctErrors(): Builder {
return this
}
}
}